Wrote basic makefile, wrote tests, and then fixed them
This commit is contained in:
parent
7adae0da7c
commit
faab7b7cf8
11 changed files with 137 additions and 11 deletions
10
src/Makefile
Normal file
10
src/Makefile
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
-include ../common.mk
|
||||
|
||||
all: libhammer.a test_suite
|
||||
|
||||
test_suite: test_suite.o libhammer.a
|
||||
$(CC) $(LDFLAGS) -o $@ $^
|
||||
|
||||
libhammer.a: bitreader.o
|
||||
|
||||
bitreader.o: test_suite.h
|
||||
Loading…
Add table
Add a link
Reference in a new issue