diff options
Diffstat (limited to 'other/itunnel/Makefile')
| -rw-r--r-- | other/itunnel/Makefile | 10 |
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 @@ | |||
| 1 | CC=gcc | ||
| 2 | CFLAGS=-Wall | ||
| 3 | |||
| 4 | all: it | ||
| 5 | |||
| 6 | clean: | ||
| 7 | rm -f it | ||
| 8 | |||
| 9 | %: %.c | ||
| 10 | $(CC) $(CFLAGS) -o $@ $< | ||
