diff options
author | Keith Packard <keithp@keithp.com> | 2005-07-09 06:14:50 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2005-07-09 06:14:50 +0000 |
commit | 657bb1fcc90a08f713c8f97c4f904808ea023c6e (patch) | |
tree | 2d95b3f9f1770eb9df9d2d0796485ebf5477d998 | |
parent | 575cf8f35bb51df34d31035fcbf7d425f85ac79c (diff) |
Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory
-rw-r--r-- | .cvsignore | 20 | ||||
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | src/.cvsignore | 6 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
4 files changed, 35 insertions, 1 deletions
diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..94fef40 --- /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 +xdamage.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 + Tue May 17 12:39:30 2005 Søren Sandmann <sandmann@redhat.com> * Add build system diff --git a/src/.cvsignore b/src/.cvsignore new file mode 100644 index 0000000..ecf74f1 --- /dev/null +++ b/src/.cvsignore @@ -0,0 +1,6 @@ +.deps +.libs +libXdamage.la +*.lo +Makefile +Makefile.in diff --git a/src/Makefile.am b/src/Makefile.am index 2505899..43751e2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,7 +5,7 @@ libXdamage_la_SOURCES = \ Xdamage.c libXdamage_la_LIBADD = $(XDAMAGE_LIBS) $(X_LIBS) -libXdamage_la_CFLAGS = $(XDAMAGE_CFLAGS) $(X_CFLAGS) +AM__CFLAGS = $(XDAMAGE_CFLAGS) $(X_CFLAGS) INCLUDES = -I$(top_srcdir)/include/X11/extensions |