summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b22196c..98bbb06 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,14 @@
.PHONY: all clean
-all: pbstream.o tests
+all: pbstream.o pbstruct.o tests
clean:
- rm -f pbstream.o tests
+ rm -f pbstream.o pbstruct.o tests
pbstream.o: pbstream.c pbstream.h
gcc -std=c99 -O3 -Wall -o pbstream.o -c pbstream.c
+pbstruct.o: pbstruct.c pbstruct.h
+ gcc -std=c99 -O3 -Wall -o pbstruct.o -c pbstruct.c
+
tests: tests.c pbstream.c pbstream.h
gcc -std=c99 -O3 -Wall -o tests tests.c
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback