X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2FMakefile.in;h=949e191bb3ad487679d86a3f04408359e2f7ffd2;hb=9a4fcef0b76bcac9a49465fa5b5efbbcf3deb196;hp=f2076ebc65113d2508c6eb480067038fc36bb52f;hpb=17635bb9efe027a26cdd8a88c03529aa36eb930a;p=swftools.git diff --git a/lib/Makefile.in b/lib/Makefile.in index f2076eb..949e191 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -3,13 +3,21 @@ 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) devices/render.$(O) \ + devices/arts.$(O) devices/record.$(O) devices/ops.$(O) \ + devices/rescale.$(O) devices/bbox.$(O) #devices/lrf.$(O) devices/opengl.$(O) + +all: librfxswf$(A) libpdf$(A) q.$(O) mem.$(O) os.$(O) gfxtools.$(O) gfxfont.$(O) art/libart$(A) png.$(O) mp3.$(O) wav.$(O) $(DEVICES) + lame_objects = @lame_objects@ h263_objects = h.263/dct.$(O) h.263/h263tables.$(O) h.263/swfvideo.$(O) actioncompiler_objects = action/assembler.$(O) action/compile.$(O) action/lex.swf4.$(O) action/lex.swf5.$(O) action/libming.$(O) action/swf4compiler.tab.$(O) action/swf5compiler.tab.$(O) action/actioncompiler.$(O) -rfxswf_modules = modules/swfbits.c modules/swfaction.c modules/swfdump.c modules/swfcgi.c modules/swfbutton.c modules/swftext.c modules/swffont.c modules/swftools.c modules/swfsound.c modules/swfshape.c modules/swfobject.c modules/swfdraw.c modules/swfrender.c h.263/swfvideo.c +rfxswf_modules = modules/swfbits.c modules/swfaction.c modules/swfdump.c modules/swfcgi.c modules/swfbutton.c modules/swftext.c modules/swffont.c modules/swftools.c modules/swfsound.c modules/swfshape.c modules/swfobject.c modules/swfdraw.c modules/swffilter.c modules/swfrender.c h.263/swfvideo.c + +libpdf$(A): pdf/GFXOutputDev.cc pdf/GFXOutputDev.h pdf/pdf.cc pdf/pdf.h + cd pdf;$(MAKE) libpdf;cd .. bitio.$(O): bitio.c bitio.h $(C) bitio.c -o $@ @@ -17,8 +25,14 @@ drawer.$(O): drawer.c drawer.h $(C) drawer.c -o $@ q.$(O): q.c q.h $(top_builddir)/config.h $(C) q.c -o $@ +mem.$(O): mem.c mem.h $(top_builddir)/config.h + $(C) mem.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 @@ -48,17 +62,39 @@ 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) -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) +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) +devices/render.$(O): devices/render.c devices/render.h + $(C) devices/render.c -o devices/render.$(O) +devices/opengl.$(O): devices/opengl.c devices/opengl.h + $(C) devices/opengl.c -o devices/opengl.$(O) +devices/arts.$(O): devices/arts.c devices/arts.h + $(C) devices/arts.c -o devices/arts.$(O) +devices/record.$(O): devices/record.c devices/record.h + $(C) devices/record.c -o devices/record.$(O) +devices/ops.$(O): devices/ops.c devices/ops.h + $(C) devices/ops.c -o devices/ops.$(O) +devices/rescale.$(O): devices/rescale.c devices/rescale.h + $(C) devices/rescale.c -o devices/rescale.$(O) +devices/bbox.$(O): devices/bbox.c devices/bbox.h + $(C) devices/bbox.c -o devices/bbox.$(O) +devices/lrf.$(O): devices/lrf.c devices/lrf.h + $(C) devices/lrf.c -o devices/lrf.$(O) + +librfxswf$(A): Makefile rfxswf.$(O) drawer.$(O) bitio.$(O) log.$(O) MD5.$(O) mem.$(O) $(lame_objects) $(h263_objects) $(actioncompiler_objects) + $(AR) r librfxswf$(A) rfxswf.$(O) drawer.$(O) bitio.$(O) log.$(O) MD5.$(O) mem.$(O) $(lame_objects) $(h263_objects) $(actioncompiler_objects) $(RANLIB) librfxswf$(A) install: uninstall: clean: - rm -f *.o *.obj *.lo *.a *.la gmon.out + rm -f *.o *.obj *.lo *.a *.lib *.la gmon.out cd lame && $(MAKE) clean && cd .. || true cd action && $(MAKE) clean && cd .. cd python && $(MAKE) clean && cd .. cd art && $(MAKE) clean && cd .. + cd pdf && $(MAKE) clean && cd ..