1 all: parser testreadwrite swfdump testwrite testrewrite testpaths mklib
5 abc.o: abc.c abc.h ../q.h pool.h
6 gcc $(D) -c abc.c -o abc.o
9 gcc $(D) -c pool.c -o pool.o
11 files.o: files.h files.c
12 gcc $(D) -c files.c -o files.o
14 registry.o: registry.h registry.c
15 gcc $(D) -c registry.c -o registry.o
17 tokenizer.yy.c: tokenizer.lex Makefile tokenizer.h
18 flex -Pavm2_ -8 -B -otokenizer.yy.c tokenizer.lex
20 tokenizer.yy.o: tokenizer.yy.c tokenizer.h parser.tab.h
21 gcc $(D) -c tokenizer.yy.c -o tokenizer.yy.o
23 parser.tab.h parser.tab.c: parser.y parser.h
24 bison -v --defines -pavm2_ parser.y -o parser.tab.c
26 parser.tab.o: parser.tab.c parser.tab.h parser.h
27 gcc $(D) -c parser.tab.c -o parser.tab.o
29 main.o: main.c parser.tab.h parser.h
30 gcc $(D) -c main.c -o main.o
32 mklib.o: mklib.c parser.tab.h parser.h
33 gcc $(D) -c mklib.c -o mklib.o
35 parser: parser.tab.o main.o files.o tokenizer.yy.o ../librfxswf.a ../libbase.a parser.tab.h
36 gcc $(D) parser.tab.o main.o tokenizer.yy.o ../librfxswf.a ../libbase.a -o parser -lz
38 mklib: mklib.o files.o ../libbase.a
39 gcc $(D) mklib.o ../librfxswf.a ../libbase.a -o mklib -lz
41 ../q.o: ../q.c ../q.h ../mem.h
44 ../librfxswf.a: ../rfxswf.h ../rfxswf.c abc.c abc.h pool.c pool.h files.c files.h code.c code.h registry.c registry.h opcodes.c opcodes.h builtin.c builtin.h
45 cd ..; make librfxswf.a
47 ../libbase.a: ../q.c ../q.h ../mem.c ../mem.h
50 swfdump: ../librfxswf.a ../../src/swfdump.c ../libbase.a abc.c abc.h pool.c pool.h code.c opcodes.c ../q.c ../q.h
51 gcc -g ../../src/swfdump.c ../librfxswf.a ../libbase.a -ljpeg -lz -lfreetype -o swfdump
53 testreadwrite: testreadwrite.c ../librfxswf.a ../libbase.a
54 gcc $(D) -DMAIN -o testreadwrite testreadwrite.c ../librfxswf.a ../libbase.a -lz -ljpeg
56 testrewrite: testrewrite.c ../librfxswf.a ../libbase.a
57 gcc $(D) -DMAIN -o testrewrite testrewrite.c ../librfxswf.a ../libbase.a -lz -ljpeg
59 testwrite: testwrite.c ../librfxswf.a ../libbase.a
60 gcc $(D) -DMAIN -o testwrite testwrite.c ../librfxswf.a ../libbase.a -lz -ljpeg
62 testpaths: testpaths.c ../librfxswf.a ../libbase.a
63 gcc $(D) -DMAIN -o testpaths testpaths.c ../librfxswf.a ../libbase.a -lz -ljpeg
66 rm -f *.o *.yy.c *.tab.c *.tab.h testreadwrite swfdump testpaths testwrite ../librfxswf.a