Browse Source

+ added Makefile for original project

master
Alex 'AdUser' Z 13 years ago
parent
commit
776a9b392f
  1. 16
      orig/Makefile

16
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
Loading…
Cancel
Save