Removed debugging output and tweaked the build system.
[gazelle.git] / runtime / Makefile
blob21bdb42686c7d8d8333332bf73df4fc8dda37bf2
2 OBJS=bc_read_stream.o interpreter.o load_grammar.o
4 default: libparse.a
6 clean:
7 rm -f libparse.a $(OBJS)
9 .PHONY: all clean
11 $(OBJS): interpreter.h bc_read_stream.h
13 $(OBJS): %.o: %.c interpreter.h bc_read_stream.h
14 $(CC) $(CFLAGS) -o $@ -c $<
16 libparse.a: $(OBJS)
17 $(AR) rcs libparse.a $(OBJS)