summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 9c347bc5c36ecec695606374556df0edba137904 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
piper: piper.c
	${CC} -o piper -Wall -Werror piper.c

mcwrapper: mcwrapper.c
	${CC} -o mcwrapper -Wall -Werror mcwrapper.c

bidirtest: bidirtest.c
	${CC} -o bidirtest -Wall -Werror bidirtest.c

.PHONY: clean

clean:
	rm -f piper bidirtest mcwrapper