Remove unused tunctl-src/Makefile from scripts/
authorScott Garman <scott.a.garman@intel.com>
Tue, 7 Dec 2010 08:48:39 +0000 (00:48 -0800)
committerScott Garman <scott.a.garman@intel.com>
Tue, 7 Dec 2010 08:48:39 +0000 (00:48 -0800)
Removing leftover cruft

Signed-off-by: Scott Garman <scott.a.garman@intel.com>
scripts/tunctl-src/Makefile [deleted file]

diff --git a/scripts/tunctl-src/Makefile b/scripts/tunctl-src/Makefile
deleted file mode 100644 (file)
index 81cab8a..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-OBJS = tunctl.o
-BIN = tunctl
-CFLAGS ?= -g -Wall
-
-BIN_DIR ?= /usr/bin
-
-all : $(BIN)
-
-$(BIN) : $(OBJS)
-       $(CC) $(CFLAGS) -o $(BIN) $(OBJS)
-
-clean : 
-       rm -f $(BIN) $(OBJS) *~
-
-install : $(BIN)
-       install -d $(DESTDIR)$(BIN_DIR)
-       install -s $(BIN) $(DESTDIR)$(BIN_DIR)