diff options
author | Marius Halden <marius.h@lden.org> | 2015-10-31 02:25:38 +0100 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2015-10-31 02:25:38 +0100 |
commit | 38fb13571b2d0c6a2bb32a955e3d00d7d320f093 (patch) | |
tree | 1861730df19b15f92aa8bc291d931ed8207d5205 /Makefile | |
parent | 055eb04b7f5cbf1748010e220428dd6d12629d30 (diff) | |
download | piper-38fb13571b2d0c6a2bb32a955e3d00d7d320f093.tar.gz piper-38fb13571b2d0c6a2bb32a955e3d00d7d320f093.tar.bz2 piper-38fb13571b2d0c6a2bb32a955e3d00d7d320f093.tar.xz |
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 |