summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorScott Garman <scott.a.garman@intel.com>2010-12-07 00:48:39 -0800
committerScott Garman <scott.a.garman@intel.com>2010-12-07 00:48:39 -0800
commit9d0d2b044edf8bf2ffaec6f2423b5d7bddb528f2 (patch)
tree08bd88ebd324ae9cb666bb29c4c0736fd8b3e422 /scripts
parent01da08097a6d193a4515d0b8166612b82c81964b (diff)
downloadpoky-9d0d2b044edf8bf2ffaec6f2423b5d7bddb528f2.tar.gz
Remove unused tunctl-src/Makefile from scripts/
Removing leftover cruft Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Diffstat (limited to 'scripts')
-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)