Added bitwriter framework

This commit is contained in:
Dan Hirsch 2012-07-27 15:22:09 -07:00
parent ec7e9f2016
commit 1b9314e73e
3 changed files with 123 additions and 1 deletions

View file

@ -25,6 +25,7 @@ PARSERS := \
OUTPUTS := bitreader.o \
hammer.o \
bitwriter.o \
libhammer.a \
pprint.o \
allocator.o \
@ -42,7 +43,7 @@ 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: bitreader.o hammer.o pprint.o allocator.o datastructures.o bitwriter.o \
$(PARSERS:%=parsers/%.o)
bitreader.o: test_suite.h