diff options
author | Keith Packard <keithp@keithp.com> | 2005-07-09 06:40:48 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2005-07-09 06:40:48 +0000 |
commit | da5d2fbc2d5ed6ebe09d69816e5d9ac9972a04b2 (patch) | |
tree | c2f8bda39c1750fda400d8e47d29e117c799a68c | |
parent | 411d59f535e4b5bda9c0fed9384506500c2c18ca (diff) |
Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory
-rw-r--r-- | .cvsignore | 19 | ||||
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | man/.cvsignore | 2 | ||||
-rw-r--r-- | src/.cvsignore | 9 | ||||
-rw-r--r-- | src/Makefile.am | 4 |
5 files changed, 41 insertions, 2 deletions
diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..4ee60b1 --- /dev/null +++ b/.cvsignore @@ -0,0 +1,19 @@ +aclocal.m4 +autom4te.cache +compile +config.guess +config.log +config.status +config.sub +configure +depcomp +INSTALL +install-sh +libtool +ltmain.sh +Makefile +Makefile.in +MakeOut +missing +mkinstalldirs +xi.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-05-22 Alan Coopersmith <alan.coopersmith@sun.com> * Makefile.am, src/Makefile.am, man/Makefile.am, configure.ac, 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..0657423 --- /dev/null +++ b/src/.cvsignore @@ -0,0 +1,9 @@ +config.h +config.h.in +.deps +.libs +libXi.la +*.lo +Makefile +Makefile.in +stamp-h1 diff --git a/src/Makefile.am b/src/Makefile.am index d5ad49a..718fceb 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,4 @@ -# $XdotOrg: $ +# $XdotOrg: lib/Xi/src/Makefile.am,v 1.1 2005/05/22 19:37:27 alanc Exp $ lib_LTLIBRARIES = libXi.la @@ -43,7 +43,7 @@ libXi_la_SOURCES = \ libXi_la_LIBADD = $(XI_LIBS) -libXi_la_CFLAGS = $(XI_CFLAGS) +AM_CFLAGS = $(XI_CFLAGS) #INCLUDES = -I$(top_srcdir)/include/X11/extensions |