diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9c347bc --- /dev/null +++ b/Makefile @@ -0,0 +1,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 |