X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2FMakefile.in;h=93a5291b4cdd22a6a6af17b4c9a150b981b9c854;hb=6cc20419da3ccf7a03d55516f339bc08e3493eaa;hp=4fec83b4b9939d75eeef4f9ee1686c7a691f63a2;hpb=fe75117d237d19d4df7b1788a505ccd32d5d9816;p=swftools.git diff --git a/lib/Makefile.in b/lib/Makefile.in index 4fec83b..93a5291 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -3,9 +3,9 @@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ include ../Makefile.common -DEVICES = devices/file.$(O) devices/swf.$(O) devices/render.$(O) +DEVICES = devices/file.$(O) devices/swf.$(O) devices/render.$(O) devices/arts.$(O) #devices/opengl.$(O) -all: librfxswf$(A) q.$(O) mem.$(O) os.$(O) gfxtools.$(O) gfxfont.$(O) art/libart$(A) png.$(O) mp3.$(O) wav.$(O) $(DEVICES) +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@ @@ -14,6 +14,9 @@ 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 +libpdf$(A): pdf/GFXOutputDev.cc pdf/GFXOutputDev.h pdf/pdf.cc pdf/pdf.h + cd pdf;$(MAKE) ../pdflib$(A);cd .. + bitio.$(O): bitio.c bitio.h $(C) bitio.c -o $@ drawer.$(O): drawer.c drawer.h @@ -63,6 +66,10 @@ 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) 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) @@ -77,4 +84,5 @@ clean: cd action && $(MAKE) clean && cd .. cd python && $(MAKE) clean && cd .. cd art && $(MAKE) clean && cd .. + cd pdf && $(MAKE) clean && cd ..