Forgot attr_bool
This commit is contained in:
parent
100dadb77d
commit
c43b6d2f4c
1 changed files with 4 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue