|
From: Daniel K. <ko...@ta...> - 2000-12-21 12:56:04
|
On 20 Dec 2000, Charles 'Buck' Krasic wrote: > I made some changes based on the recommendations in there. For > example, I used the name "bootstrap" instead of autogen.sh. I > tightened up some of the dependencies. I added a configure argument > to build a slow version without any of the assembler code, for people > who want maximum quality. Extremely cool. Thanks Buck. Just a small note however. The clean target so far doesn't remove any of the optionally generated files. The following patch works for me, there may well be a cleaner version though. Regards, Daniel. Index: Makefile.am =================================================================== RCS file: /cvsroot/libdv/libdv/Makefile.am,v retrieving revision 1.3 diff -u -r1.3 Makefile.am --- Makefile.am 2000/12/21 04:10:17 1.3 +++ Makefile.am 2000/12/21 12:54:56 @@ -67,4 +67,6 @@ asmoff.h: gasmoff ./gasmoff > asmoff.h -endif \ No newline at end of file +clean-local: + -rm -f $(EXTRA_PROGRAMS) asmoff.h +endif -- GNU/Linux Audio Mechanics - http://www.glame.de Cutting Edge Office - http://www.c10a02.de GPG Key ID 89BF7E2B - http://www.keyserver.net |