diff options
author | Keith Packard <keithp@keithp.com> | 2005-07-09 21:10:32 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2005-07-09 21:10:32 +0000 |
commit | 417a69a7e9ad4df9b3a7f03b09e4694ad5c2bcbc (patch) | |
tree | 7c6b31eddedc9b2843b30a53c299fc21f8ccb22d | |
parent | 4b8ad01b53792d4220579a259290e6bf59eb3d8b (diff) |
Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory
-rw-r--r-- | .cvsignore | 17 | ||||
-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, 38 insertions, 1 deletions
diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..c8da958 --- /dev/null +++ b/.cvsignore @@ -0,0 +1,17 @@ +aclocal.m4 +autom4te.cache +compile +config.guess +config.log +config.status +config.sub +configure +depcomp +install-sh +libtool +ltmain.sh +Makefile +Makefile.in +missing +mkinstalldirs +xxf86vm.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..5e33e26 --- /dev/null +++ b/src/.cvsignore @@ -0,0 +1,9 @@ +config.h +config.h.in +.deps +.libs +libXxf86vm.la +*.lo +Makefile +Makefile.in +stamp-h1 diff --git a/src/Makefile.am b/src/Makefile.am index b0e5b94..6630eeb 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,6 +2,6 @@ lib_LTLIBRARIES = libXxf86vm.la libXxf86vm_la_SOURCES = XF86VMode.c -libXxf86vm_la_CFLAGS = $(XXF86VM_CFLAGS) +AM_CFLAGS = $(XXF86VM_CFLAGS) libXxf86vm_la_LIBADD = $(XXF86VM_LIBS) libXxf86vm_la_LDFLAGS = -version-number 1:0:0 |