Remove unused tunctl-src/Makefile from scripts/

Removing leftover cruft

Signed-off-by: Scott Garman <scott.a.garman@intel.com>
This commit is contained in:
Scott Garman 2010-12-07 00:48:39 -08:00
parent 01da08097a
commit 9d0d2b044e
1 changed files with 0 additions and 17 deletions

View File

@ -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)