summaryrefslogtreecommitdiff
path: root/other/itunnel/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'other/itunnel/Makefile')
-rw-r--r--other/itunnel/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/other/itunnel/Makefile b/other/itunnel/Makefile
new file mode 100644
index 0000000..72ba728
--- /dev/null
+++ b/other/itunnel/Makefile
@@ -0,0 +1,10 @@
1CC=gcc
2CFLAGS=-Wall
3
4all: it
5
6clean:
7 rm -f it
8
9%: %.c
10 $(CC) $(CFLAGS) -o $@ $<