diff options
author | Keith Packard <keithp@keithp.com> | 2005-07-09 06:03:13 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2005-07-09 06:03:13 +0000 |
commit | c38c5edc353971b2ca6b3d2b55288b88cd46de5b (patch) | |
tree | 4727ea35d27a9f9e187eb848989ecdb1c8327b25 | |
parent | c1ed34d39740625d52eca7f2c5bf5c6797f28097 (diff) |
Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory
-rw-r--r-- | .cvsignore | 21 | ||||
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | man/.cvsignore | 2 | ||||
-rw-r--r-- | src/.cvsignore | 6 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
5 files changed, 39 insertions, 1 deletions
diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..1223f7f --- /dev/null +++ b/.cvsignore @@ -0,0 +1,21 @@ +aclocal.m4 +autom4te.cache +compile +config.guess +config.h +config.h.in +config.log +config.status +config.sub +configure +depcomp +install-sh +libtool +ltmain.sh +Makefile +Makefile.in +MakeOut +missing +mkinstalldirs +stamp-h1 +xres.pc @@ -1,3 +1,12 @@ +2005-07-08 Keith Packard <keithp@keithp.com> + + * .cvsignore: + * man/.cvsignore: + * src/.cvsignore: + * src/Makefile.am: + Add .cvsignore files + Switch _la_CFLAGS for AM_CFLAGS to clean up directory + 2005-06-22 Theo van Klaveren <t.vanklaveren@student.utwente.nl> Fix make distcheck. diff --git a/man/.cvsignore b/man/.cvsignore new file mode 100644 index 0000000..282522d --- /dev/null +++ b/man/.cvsignore @@ -0,0 +1,2 @@ +Makefile +Makefile.in diff --git a/src/.cvsignore b/src/.cvsignore new file mode 100644 index 0000000..a2564a4 --- /dev/null +++ b/src/.cvsignore @@ -0,0 +1,6 @@ +.deps +.libs +libXRes.la +*.lo +Makefile +Makefile.in diff --git a/src/Makefile.am b/src/Makefile.am index 3153d52..3282ca2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,7 +5,7 @@ libXRes_la_SOURCES = \ libXRes_la_LIBADD = @RESOURCEEXT_LIBS@ @XRES_LIBS@ -libXRes_la_CFLAGS = @RESOURCEEXT_CFLAGS@ +AM_CFLAGS = @RESOURCEEXT_CFLAGS@ INCLUDES = -I$(top_srcdir)/include |