You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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
|
|
|