diff options
author | Keith Packard <keithp@keithp.com> | 2005-07-09 06:53:49 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2005-07-09 06:53:49 +0000 |
commit | 9db3c882e7571eebc98d0070c3ccbc7633b57604 (patch) | |
tree | 6a709ad312e4d398d5e6080a259517720fa214ad | |
parent | 1b0c54229a5259677eab3f80cf8baedc1ca802e5 (diff) |
Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory
-rw-r--r-- | .cvsignore | 13 | ||||
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | man/.cvsignore | 1 | ||||
-rw-r--r-- | src/.cvsignore | 1 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
5 files changed, 25 insertions, 1 deletions
diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..221b682 --- /dev/null +++ b/.cvsignore @@ -0,0 +1,13 @@ +aclocal.m4 +autom4te.cache +compile +config.guess +config.h.in +config.sub +configure +depcomp +install-sh +ltmain.sh +Makefile.in +missing +mkinstalldirs @@ -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-21 Alexander Gottwald <ago at freedesktop dot org> * configure.ac diff --git a/man/.cvsignore b/man/.cvsignore new file mode 100644 index 0000000..70845e0 --- /dev/null +++ b/man/.cvsignore @@ -0,0 +1 @@ +Makefile.in diff --git a/src/.cvsignore b/src/.cvsignore new file mode 100644 index 0000000..70845e0 --- /dev/null +++ b/src/.cvsignore @@ -0,0 +1 @@ +Makefile.in diff --git a/src/Makefile.am b/src/Makefile.am index 8f9397c..0e54a72 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,7 +5,7 @@ libXv_la_SOURCES = \ Xvlibint.h libXv_la_LIBADD = @DEP_LIBS@ -libXv_la_CFLAGS = @DEP_CFLAGS@ +AM_CFLAGS = @DEP_CFLAGS@ libXv_la_LDFLAGS = -version-info 7:0:0 -no-undefined |