X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fgfxpoly%2FMakefile;h=d91c78f01da6735ad2b8fceda5ae919b4c863c26;hp=ad3a9cfde6bba7a51a0a5c7d49137e3ccedf3341;hb=afeee73172d508d2e7e4efd028939e36356fbe8e;hpb=d966a4b935a597e9acd2502ca1e5ffaff51fa418 diff --git a/lib/gfxpoly/Makefile b/lib/gfxpoly/Makefile index ad3a9cf..d91c78f 100644 --- a/lib/gfxpoly/Makefile +++ b/lib/gfxpoly/Makefile @@ -1,7 +1,7 @@ -all: test +all: test stroke include ../../Makefile.common -CC = gcc -g -O2 +CC = gcc -O2 -g #CC = gcc -O3 ../libbase.a: ../q.c ../q.h ../mem.c ../mem.h @@ -13,7 +13,7 @@ CC = gcc -g -O2 testheap: ../libbase.a testheap.c $(CC) testheap.c ../libbase.a -o testheap -lm -lz -ljpeg -OBJS = active.o convert.o poly.o wind.o renderpoly.o xrow.o +OBJS = active.o convert.o poly.o wind.o renderpoly.o xrow.o stroke.o active.o: active.c active.h poly.h $(CC) -c active.c -o active.o @@ -33,9 +33,16 @@ renderpoly.o: renderpoly.c wind.h poly.h renderpoly.h xrow.o: xrow.c xrow.h ../q.h ../mem.h $(CC) -c xrow.c -o xrow.o -SWF = ../librfxswf.a ../libpdf.a ../libgfx.a -lstdc++ -test: ../libbase.a ../libgfx.a test.c $(OBJS) poly.h convert.h - $(CC) test.c $(OBJS) $(SWF) ../libbase.a ../libgfx.a -o test $(LIBS) +stroke.o: stroke.c poly.h convert.h wind.h + $(CC) -c stroke.c -o stroke.o + +GFX=../gfxfont.o ../gfxtools.o ../gfximage.o ../devices/ops.o ../devices/polyops.o ../devices/text.o ../devices/bbox.o ../devices/render.o ../devices/rescale.o ../devices/record.o +stroke: test_stroke.c $(OBJS) ../libgfxswf.a ../librfxswf.a ../libbase.a + $(CC) test_stroke.c $(OBJS) ../libgfxswf.a ../librfxswf.a $(GFX) ../libbase.a -o stroke $(LIBS) + +SWF = ../librfxswf.a ../libpdf.a -lstdc++ +test: ../libbase.a test.c $(OBJS) poly.h convert.h $(GFX) + $(CC) test.c $(OBJS) $(SWF) $(GFX) ../libbase.a -o test $(LIBS) clean: - rm -f *.o test + rm -f *.o test stroke