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