From 776a9b392f263219fd5407b7f8dda1e8fff96912 Mon Sep 17 00:00:00 2001 From: Alex 'AdUser' Z Date: Sun, 18 Sep 2011 02:10:30 +1100 Subject: [PATCH] + added Makefile for original project --- orig/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 orig/Makefile diff --git a/orig/Makefile b/orig/Makefile new file mode 100644 index 0000000..2d3f168 --- /dev/null +++ b/orig/Makefile @@ -0,0 +1,16 @@ +CFLAGS = -Wall -O2 -pedantic + +all: torread torwrite + +torread: torread.c + gcc $(CFLAGS) torread.c -o torread + +torwrite: torwrite.c + gcc $(CFLAFS) torwrite.c -o torwrite + +clean: + rm -f *.o + rm -f torread + rm -f torwrite + +# vim:noet:ts=4:ai