From c8d67b2686796b70c946fcd98d72d4c2828b51e8 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Mon, 2 Mar 2009 00:28:44 -0800 Subject: More refactoring of structures. pbstream_internal.h is now where even lower-level parsing functions go. --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3