summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/tunctl-src/Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/tunctl-src/Makefile b/scripts/tunctl-src/Makefile
deleted file mode 100644
index 81cab8a3cd..0000000000
--- a/scripts/tunctl-src/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
1OBJS = tunctl.o
2BIN = tunctl
3CFLAGS ?= -g -Wall
4
5BIN_DIR ?= /usr/bin
6
7all : $(BIN)
8
9$(BIN) : $(OBJS)
10 $(CC) $(CFLAGS) -o $(BIN) $(OBJS)
11
12clean :
13 rm -f $(BIN) $(OBJS) *~
14
15install : $(BIN)
16 install -d $(DESTDIR)$(BIN_DIR)
17 install -s $(BIN) $(DESTDIR)$(BIN_DIR)