X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2FMakefile.in;h=bbf4bae687e13de1a1f8a6f19bab8806ce472d37;hb=05339375d4de838b911834d813eb90edcc48b92c;hp=2514e0a865c947a99e4b56ee6b009bef5a551531;hpb=aff5dbb6ea8888505609fa04994de4bed5444d62;p=swftools.git diff --git a/lib/Makefile.in b/lib/Makefile.in index 2514e0a..bbf4bae 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -3,19 +3,18 @@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ include ../Makefile.common -DEVICES = devices/file.$(O) devices/swf.$(O) devices/render.$(O) devices/arts.$(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) +DEVICES = devices/swf.$(O) devices/arts.$(O) #devices/lrf.$(O) devices/opengl.$(O) +all: librfxswf$(A) libpdf$(A) art/libart$(A) libbase$(A) libgfx$(A) $(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 .. +base_objects=q.$(O) utf8.$(O) mem.$(O) png.$(O) wav.$(O) mp3.$(O) os.$(O) bitio.$(O) log.$(O) mem.$(O) +gfx_objects=gfxtools.$(O) gfxfont.$(O) devices/file.$(O) devices/render.$(O) devices/text.$(O) devices/record.$(O) devices/ops.$(O) devices/bbox.$(O) devices/rescale.$(O) bitio.$(O): bitio.c bitio.h $(C) bitio.c -o $@ @@ -23,6 +22,8 @@ drawer.$(O): drawer.c drawer.h $(C) drawer.c -o $@ q.$(O): q.c q.h $(top_builddir)/config.h $(C) q.c -o $@ +utf8.$(O): utf8.c utf8.h $(top_builddir)/config.h + $(C) utf8.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 @@ -37,6 +38,8 @@ gfxtools.$(O): gfxtools.c gfxtools.h $(top_builddir)/config.h $(C) gfxtools.c -o $@ gfxfont.$(O): gfxfont.c gfxfont.h $(top_builddir)/config.h $(C) gfxfont.c -o $@ +gfxwindow.$(O): gfxwindow_win32.c gfxwindow_unix.c gfxwindow.c gfxwindow.h + $(C) gfxwindow.c -o $@ MD5.$(O): MD5.c MD5.h $(C) MD5.c -o $@ @@ -68,13 +71,35 @@ 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 +devices/arts.$(O): devices/arts.c devices/arts.h devices/artsutils.c $(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) +devices/record.$(O): devices/record.c devices/record.h + $(C) devices/record.c -o devices/record.$(O) +devices/text.$(O): devices/text.c devices/text.h + $(C) devices/text.c -o devices/text.$(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) + +libbase$(A): $(base_objects) Makefile + $(AR) r libbase$(A) $(base_objects) + +libgfx$(A): $(gfx_objects) Makefile + $(AR) r libgfx$(A) $(gfx_objects) + +librfxswf$(A): Makefile rfxswf.$(O) drawer.$(O) MD5.$(O) $(lame_objects) $(h263_objects) $(actioncompiler_objects) Makefile + $(AR) r librfxswf$(A) rfxswf.$(O) drawer.$(O) MD5.$(O) $(lame_objects) $(h263_objects) $(actioncompiler_objects) $(RANLIB) librfxswf$(A) +libpdf$(A): pdf/GFXOutputDev.cc pdf/GFXOutputDev.h pdf/pdf.cc pdf/pdf.h + cd pdf;$(MAKE) libpdf;cd .. + + install: uninstall: