summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2009-03-02 00:28:44 -0800
committerJoshua Haberman <joshua@reverberate.org>2009-03-02 00:28:44 -0800
commitc8d67b2686796b70c946fcd98d72d4c2828b51e8 (patch)
tree33d2f928ac483587e916988646d07f2b7b8d055b /Makefile
parent73ab650ad1968b13abbf1869c4739cfdf2752671 (diff)
More refactoring of structures.
pbstream_internal.h is now where even lower-level parsing functions go.
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