diff options
author | Keith Packard <keithp@keithp.com> | 2005-07-09 21:11:25 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2005-07-09 21:11:25 +0000 |
commit | b5b357df37d6adb66daedf8a9950bf653bf4c54d (patch) | |
tree | 00fa723f3d465647fbb77454765fabd273eb952f | |
parent | 63d3d3060793b834a6f55a1788ed74dd91ff1635 (diff) |
Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory
-rw-r--r-- | .cvsignore | 21 | ||||
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | man/.cvsignore | 2 | ||||
-rw-r--r-- | src/.cvsignore | 6 | ||||
-rw-r--r-- | src/Makefile.am | 4 |
5 files changed, 40 insertions, 2 deletions
diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..9219f24 --- /dev/null +++ b/.cvsignore @@ -0,0 +1,21 @@ +aclocal.m4 +autom4te.cache +compile +config.guess +config.h +config.h.in +config.log +config.status +config.sub +configure +depcomp +dmx.pc +install-sh +libtool +ltmain.sh +Makefile +Makefile.in +MakeOut +missing +mkinstalldirs +stamp-h1 @@ -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-22 Theo van Klaveren <t.vanklaveren@student.utwente.nl> Fix make distcheck. 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..7e21822 --- /dev/null +++ b/src/.cvsignore @@ -0,0 +1,6 @@ +.deps +libdmx.la +.libs +*.lo +Makefile +Makefile.in diff --git a/src/Makefile.am b/src/Makefile.am index ac6014b..ded7b7e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,11 +1,11 @@ lib_LTLIBRARIES = libdmx.la -libdmx_la_SOURCES = \ +libdmx_la_SOURCES = \ dmx.c libdmx_la_LIBADD = $(DEP_LIBS) libdmx_la_LDFLAGS = -version-info 7:0:0 -no-undefined -libdmx_la_CFLAGS = $(DEP_CFLAGS) +AM_CFLAGS = $(DEP_CFLAGS) |