Forgot attr_bool

This commit is contained in:
Dan Hirsch 2012-05-26 16:05:01 +02:00
parent 100dadb77d
commit c43b6d2f4c

View file

@ -20,7 +20,8 @@ PARSERS := \
ignore \
epsilon \
and \
not
not \
attr_bool
OUTPUTS := bitreader.o \
hammer.o \
@ -41,8 +42,8 @@ all: libhammer.a test_suite
test_suite: test_suite.o libhammer.a
$(call hush, "Linking $@") $(CC) -o $@ $^ $(LDFLAGS)
libhammer.a: bitreader.o hammer.o pprint.o allocator.o datastructures.o
libhammer.a: $(PARSERS:%=parsers/%.o)
libhammer.a: bitreader.o hammer.o pprint.o allocator.o datastructures.o \
$(PARSERS:%=parsers/%.o)
bitreader.o: test_suite.h
hammer.o: hammer.h