summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2009-03-06 00:02:55 -0800
committerJoshua Haberman <joshua@reverberate.org>2009-03-06 00:02:55 -0800
commit894e7c6e58cb7bb8cbfdca3303950687089b6c4e (patch)
treed8244f813b7b86619f6d2a58f368cdc6a219935e /Makefile
parent0a1697f8284ed6d00173e6a018902455017c435d (diff)
Removed references to pbstruct from Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 91e58c5..b82f9e0 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,12 @@
.PHONY: all clean
CFLAGS=-std=c99 -O3 -Wall -Wextra -pedantic
-all: pbstream.o pbstruct.o tests
+all: pbstream.o tests
clean:
rm -f pbstream.o pbstruct.o tests
pbstream.o: pbstream.c pbstream.h
gcc $(CFLAGS) -o pbstream.o -c pbstream.c
-pbstruct.o: pbstruct.c pbstruct.h
- gcc $(CFLAGS) -o pbstruct.o -c pbstruct.c
-
tests: tests.c pbstream.c pbstream.h
gcc $(CFLAGS) -o tests tests.c
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback