From 77374b6b5505022a057dbab119854c6b4ad48916 Mon Sep 17 00:00:00 2001 From: kramm Date: Thu, 3 Apr 2003 08:44:29 +0000 Subject: [PATCH] * executables get stripped now * wav dependency for swfc added --- src/Makefile.in | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/Makefile.in b/src/Makefile.in index 31a712e..d3dadf5 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -1,4 +1,3 @@ -src = i3847 top_builddir = .. srcdir = @srcdir@ top_srcdir = @top_srcdir@ @@ -37,20 +36,28 @@ parser.yy.c: parser.lex wav2swf: wav2swf.o wav.o $(L) wav2swf.o wav.o -o $@ ../lib/librfxswf.a $(LIBS) + $(STRIP) wav2swf png2swf: png2swf.o $(L) png2swf.o -o $@ ../lib/librfxswf.a $(LIBS) + $(STRIP) png2swf swfcombine: swfcombine.o $(L) swfcombine.o -o $@ ../lib/librfxswf.a $(LIBS) + $(STRIP) swfcombine swfdump: swfdump.o $(L) swfdump.o -o $@ ../lib/librfxswf.a $(LIBS) + $(STRIP) swfdump swfextract: swfextract.o $(L) swfextract.o -o $@ ../lib/librfxswf.a $(LIBS) + $(STRIP) swfextract swfstrings: swfstrings.o $(L) swfstrings.o -o $@ ../lib/librfxswf.a $(LIBS) + $(STRIP) swfstrings jpeg2swf: jpeg2swf.o $(L) jpeg2swf.o -o $@ ../lib/librfxswf.a $(LIBS) -swfc: parser.o swfc.o q.o - $(L) parser.o swfc.o q.o -o $@ ../lib/librfxswf.a $(LIBS) + $(STRIP) jpeg2swf +swfc: parser.o swfc.o q.o wav.o + $(L) parser.o swfc.o q.o wav.o -o $@ ../lib/librfxswf.a $(LIBS) + $(STRIP) swfc install: $(mkinstalldirs) $(bindir) -- 1.7.10.4