diff options
author | Keith Packard <keithp@keithp.com> | 2005-07-09 21:08:53 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2005-07-09 21:08:53 +0000 |
commit | 1ffe76acba6266c8f47af96d1f9bbc46d4b5dcf4 (patch) | |
tree | 72fcc84ee01c678f8106e6f23be856a458218599 | |
parent | 69ae5c35260f8f92063a3e6953f51702c4f0b4eb (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..b40641f --- /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 +xxf86misc.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..07e6fa2 --- /dev/null +++ b/src/.cvsignore @@ -0,0 +1,9 @@ +config.h +config.h.in +.deps +.libs +libXxf86misc.la +*.lo +Makefile +Makefile.in +stamp-h1 diff --git a/src/Makefile.am b/src/Makefile.am index 3fb85df..5572019 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,6 +2,6 @@ lib_LTLIBRARIES = libXxf86misc.la libXxf86misc_la_SOURCES = XF86Misc.c -libXxf86misc_la_CFLAGS = $(XXF86MISC_CFLAGS) +AM_CFLAGS = $(XXF86MISC_CFLAGS) libXxf86misc_la_LIBADD = $(XXF86MISC_LIBS) libXxf86misc_la_LDFLAGS = -version-number 1:1:0 |