fixed the bpp 3 bug reported by Amartyo Banerjee.
[swftools.git] / Makefile.in
index 96c9b78..31a52e9 100644 (file)
@@ -4,17 +4,24 @@ top_srcdir = @top_srcdir@
 include ./Makefile.common
 
 all install uninstall clean:
+       @echo making $@ in m4...
+       cd m4;$(MAKE) $@
        @echo making $@ in lib...
-       cd lib;$(MAKE) $@;cd ..
+       cd lib;$(MAKE) $@
        @echo making $@ in src...
-       cd src;$(MAKE) $@;cd ..
+       cd src;$(MAKE) $@
        @echo making $@ in pdf2swf...
-       cd pdf2swf;$(MAKE) $@;cd ..
+       cd pdf2swf;$(MAKE) $@
        @echo making $@ in avi2swf...
-       cd avi2swf;$(MAKE) $@;cd ..
+       cd avi2swf;$(MAKE) $@
        @echo making $@ in swfs...
-       cd swfs;$(MAKE) $@;cd ..
-       $(MAKE) $@-local
+       cd swfs;$(MAKE) $@
+       @$(MAKE) $@-local
+
+distclean:
+       $(MAKE) clean
+       rm -f config.status config.cache configure config.h Makefile Makefile.common libtool
+       rm -f lib/lame/Makefile lib/Makefile src/Makefile avi2swf/Makefile pdf2swf/Makefile pdf2swf/ttf2pt1/Makefile pdf2swf/xpdf/Makefile
 
 clean-local:
        rm -f config.cache
@@ -24,4 +31,5 @@ uninstall-local:
 
 all-local:
 install-local:
-       
+
+.PHONY: all install uninstall clean distclean clean-local uninstall-local all-local install-local