summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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