diff options
author | Keith Packard <keithp@keithp.com> | 2005-07-09 06:48:05 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2005-07-09 06:48:05 +0000 |
commit | 63538e6c68e1697e027e55a5015791de3af7bc8c (patch) | |
tree | 49270d6d050059af24f80494f9e46b7e49cfbf35 | |
parent | 3f5e389cb5bd5305cc45aca522086d3b92506265 (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-- | man/.cvsignore | 2 | ||||
-rw-r--r-- | src/.cvsignore | 6 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
5 files changed, 38 insertions, 1 deletions
diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..118b016 --- /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 +xrandr.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-09 Alexander Gottwald <ago@freedesktop.org> * 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..a947c47 --- /dev/null +++ b/src/.cvsignore @@ -0,0 +1,6 @@ +.deps +.libs +libXrandr.la +*.lo +Makefile +Makefile.in diff --git a/src/Makefile.am b/src/Makefile.am index b6d11ce..ce0dcac 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -6,7 +6,7 @@ libXrandr_la_SOURCES = \ Xrandrint.h libXrandr_la_LIBADD = @X_LIBS@ -lX11 -lXext -lXrender -libXrandr_la_CFLAGS = @X_CFLAGS@ +AM_CFLAGS = @X_CFLAGS@ INCLUDES = -I$(top_srcdir)/include/X11/extensions |