From c43b6d2f4c12704cf4ad9c17f99af2d1db295b45 Mon Sep 17 00:00:00 2001 From: Dan Hirsch Date: Sat, 26 May 2012 16:05:01 +0200 Subject: [PATCH] Forgot attr_bool --- src/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Makefile b/src/Makefile index 7f08439..9c69124 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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