diff options
author | Keith Packard <keithp@keithp.com> | 2005-07-09 06:46:32 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2005-07-09 06:46:32 +0000 |
commit | d306faf2246d35db5e7b033099f3ba733c4c7f7a (patch) | |
tree | 8698deb8f5634fbb694585c2bef83b5994af23ce | |
parent | ac2bd47662133c5df764ea82786fcdeba81aeeea (diff) |
Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory
-rw-r--r-- | .cvsignore | 20 | ||||
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | include/X11/.cvsignore | 1 | ||||
-rw-r--r-- | src/.cvsignore | 6 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
5 files changed, 37 insertions, 1 deletions
diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..87414d5 --- /dev/null +++ b/.cvsignore @@ -0,0 +1,20 @@ +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 +missing +mkinstalldirs +stamp-h1 +xprintapputil.pc @@ -0,0 +1,9 @@ +2005-07-08 Keith Packard <keithp@keithp.com> + + * .cvsignore: + * include/X11/.cvsignore: + * src/.cvsignore: + * src/Makefile.am: + Add .cvsignore files + Switch _la_CFLAGS for AM_CFLAGS to clean up directory + diff --git a/include/X11/.cvsignore b/include/X11/.cvsignore new file mode 100644 index 0000000..44389c5 --- /dev/null +++ b/include/X11/.cvsignore @@ -0,0 +1 @@ +XprintAppUtil diff --git a/src/.cvsignore b/src/.cvsignore new file mode 100644 index 0000000..0d5f4dd --- /dev/null +++ b/src/.cvsignore @@ -0,0 +1,6 @@ +.deps +.libs +libXprintAppUtil.la +*.lo +Makefile +Makefile.in diff --git a/src/Makefile.am b/src/Makefile.am index bc8222e..9e7f720 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -7,7 +7,7 @@ INCLUDES = -I$(top_srcdir)/include libXprintAppUtil_la_LIBADD = @DEP_LIBS@ -libXprintAppUtil_la_CFLAGS = @DEP_CFLAGS@ +AM_CFLAGS = @DEP_CFLAGS@ libXprintAppUtil_la_LDFLAGS = -version-info 7:0:0 -no-undefined |