summaryrefslogtreecommitdiff
path: root/Makefile
blob: b22196c3b822a394b1a9c313b80ce060679c205f (plain)
1
2
3
4
5
6
7
8
9
10
11

.PHONY: all clean
all: pbstream.o tests
clean:
	rm -f pbstream.o tests

pbstream.o: pbstream.c pbstream.h
	gcc -std=c99 -O3 -Wall -o pbstream.o -c pbstream.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