diff options
-rw-r--r-- | .cvsignore | 21 | ||||
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | src/.cvsignore | 6 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
4 files changed, 36 insertions, 1 deletions
diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..fd16db1 --- /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 +xtst.pc @@ -1,3 +1,11 @@ +2005-07-08 Keith Packard <keithp@keithp.com> + + * .cvsignore: + * src/.cvsignore: + * src/Makefile.am: + Add .cvsignore files + Switch _la_CFLAGS for AM_CFLAGS to clean up directory + 2005-06-21 Alexander Gottwald <ago at freedesktop dot org> * configure.ac diff --git a/src/.cvsignore b/src/.cvsignore new file mode 100644 index 0000000..4fcb96e --- /dev/null +++ b/src/.cvsignore @@ -0,0 +1,6 @@ +.deps +.libs +libXtst.la +*.lo +Makefile +Makefile.in diff --git a/src/Makefile.am b/src/Makefile.am index ffc0ed3..ab7b9d1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,7 +5,7 @@ libXtst_la_SOURCES = \ XTest.c libXtst_la_LIBADD = @DEP_LIBS@ -libXtst_la_CFLAGS = @DEP_CFLAGS@ +AM_CFLAGS = @DEP_CFLAGS@ libXtst_la_LDFLAGS = -version-info 7:0:0 -no-undefined |