A lot of work to the manual for 0.3.
[gazelle.git] / utilities / Makefile
blob436c7034747bd2f152dc9e7d252a88f1c84d6492
2 default: bitcode_dump gzlparse
3 all: default
5 clean:
6 rm -rf bitcode_dump.o bitcode_dump gzlparse.o gzlparse
8 bitcode_dump.o: bitcode_dump.c ../runtime/bc_read_stream.h
9 $(CC) $(CFLAGS) -o bitcode_dump.o -c bitcode_dump.c -I../runtime
11 bitcode_dump: bitcode_dump.o ../runtime/bc_read_stream.o
12 $(CC) -o bitcode_dump bitcode_dump.o ../runtime/bc_read_stream.o
14 gzlparse.o: gzlparse.c ../runtime/bc_read_stream.h ../runtime/interpreter.h
15 $(CC) $(CFLAGS) -o gzlparse.o -c gzlparse.c -I../runtime
17 gzlparse: gzlparse.o ../runtime/libparse.a
18 $(CC) -o gzlparse gzlparse.o ../runtime/libparse.a