diff options
author | Keith Packard <keithp@keithp.com> | 2005-07-09 21:05:22 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2005-07-09 21:05:22 +0000 |
commit | b56facdddd0b07195082ca94f6745b890151ad7b (patch) | |
tree | 01ed1195e5b8840dfb459df2fc12cf70ecc84267 | |
parent | 2343f1171cb1a36e47622395965d072a0ce78db7 (diff) |
Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory
-rw-r--r-- | .cvsignore | 18 | ||||
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | man/.cvsignore | 2 | ||||
-rw-r--r-- | src/.cvsignore | 9 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
5 files changed, 39 insertions, 1 deletions
diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..7250f89 --- /dev/null +++ b/.cvsignore @@ -0,0 +1,18 @@ +aclocal.m4 +autom4te.cache +compile +config.guess +config.log +config.status +config.sub +configure +depcomp +install-sh +libtool +ltmain.sh +Makefile +Makefile.in +MakeOut +missing +mkinstalldirs +xxf86dga.pc diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..96df0af --- /dev/null +++ b/ChangeLog @@ -0,0 +1,9 @@ +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 + 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..3bd1d10 --- /dev/null +++ b/src/.cvsignore @@ -0,0 +1,9 @@ +config.h +config.h.in +.deps +.libs +libXxf86dga.la +*.lo +Makefile +Makefile.in +stamp-h1 diff --git a/src/Makefile.am b/src/Makefile.am index 5d4b887..0f86b0c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,6 +2,6 @@ lib_LTLIBRARIES = libXxf86dga.la libXxf86dga_la_SOURCES = XF86DGA.c XF86DGA2.c -libXxf86dga_la_CFLAGS = $(XXF86DGA_CFLAGS) +AM_CFLAGS = $(XXF86DGA_CFLAGS) libXxf86dga_la_LIBADD = $(XXF86DGA_LIBS) libXxf86dga_la_LDFLAGS = -version-number 1:0:0 |