X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2FMakefile.in;h=24f2cac59f7cfc4b4ac5a0927355bf7fc73d29e3;hb=c049a0fae8bd68e37b3988d81cdf792c523ef8e8;hp=e17ce3b47be442c3beadc7c57af0d973cc39e623;hpb=5ba313ea4bed181b4ce069a8bd39ee7aca5c2850;p=swftools.git diff --git a/lib/Makefile.in b/lib/Makefile.in index e17ce3b..24f2cac 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -3,7 +3,10 @@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ include ../Makefile.common -all: librfxswf$(A) q.$(O) os.$(O) gfxtools.$(O) gfxfont.$(O) art/libart$(A) png.$(O) +DEVICES = devices/file.$(O) devices/swf.$(O) + +all: librfxswf$(A) q.$(O) os.$(O) gfxtools.$(O) gfxfont.$(O) art/libart$(A) png.$(O) mp3.$(O) wav.$(O) $(DEVICES) + lame_objects = @lame_objects@ @@ -19,6 +22,10 @@ q.$(O): q.c q.h $(top_builddir)/config.h $(C) q.c -o $@ png.$(O): png.c png.h $(top_builddir)/config.h $(C) png.c -o $@ +mp3.$(O): mp3.c mp3.h $(top_builddir)/config.h + $(C) mp3.c -o $@ +wav.$(O): wav.c wav.h $(top_builddir)/config.h + $(C) wav.c -o $@ os.$(O): os.c os.h $(top_builddir)/config.h $(C) -DSWFTOOLS_DATADIR=\"$(pkgdatadir)\" os.c -o $@ gfxtools.$(O): gfxtools.c gfxtools.h $(top_builddir)/config.h @@ -34,9 +41,9 @@ rfxswf.$(O): rfxswf.c rfxswf.h drawer.h bitio.h log.h MD5.h $(rfxswf_modules) $( $(C) rfxswf.c -o $@ $(lame_objects): - cd lame;make all;cd .. + cd lame;$(MAKE) all;cd .. $(actioncompiler_objects): - cd action;make all;cd .. + cd action;$(MAKE) all;cd .. art/libart$(A): cd art; $(MAKE) libart$(A);cd .. @@ -48,6 +55,11 @@ h.263/h263tables.$(O): h.263/h263tables.c h.263/h263tables.h h.263/swfvideo.$(O): h.263/swfvideo.c h.263/h263tables.h h.263/dct.h $(C) h.263/swfvideo.c -o h.263/swfvideo.$(O) +devices/swf.$(O): devices/swf.c devices/swf.h + $(C) devices/swf.c -o devices/swf.$(O) +devices/file.$(O): devices/file.c devices/file.h + $(C) devices/file.c -o devices/file.$(O) + librfxswf$(A): Makefile rfxswf.$(O) drawer.$(O) bitio.$(O) log.$(O) MD5.$(O) $(lame_objects) $(h263_objects) $(actioncompiler_objects) $(AR) r librfxswf$(A) rfxswf.$(O) drawer.$(O) bitio.$(O) log.$(O) MD5.$(O) $(lame_objects) $(h263_objects) $(actioncompiler_objects) $(RANLIB) librfxswf$(A)