Skip to content
Snippets Groups Projects
Commit c43b6d2f authored by Dan Hirsch's avatar Dan Hirsch
Browse files

Forgot attr_bool

parent 100dadb7
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment