diff options
author | Scott Garman <scott.a.garman@intel.com> | 2010-12-07 00:48:39 -0800 |
---|---|---|
committer | Scott Garman <scott.a.garman@intel.com> | 2010-12-07 00:48:39 -0800 |
commit | 9d0d2b044edf8bf2ffaec6f2423b5d7bddb528f2 (patch) | |
tree | 08bd88ebd324ae9cb666bb29c4c0736fd8b3e422 /scripts | |
parent | 01da08097a6d193a4515d0b8166612b82c81964b (diff) | |
download | poky-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/Makefile | 17 |
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 @@ | |||
1 | OBJS = tunctl.o | ||
2 | BIN = tunctl | ||
3 | CFLAGS ?= -g -Wall | ||
4 | |||
5 | BIN_DIR ?= /usr/bin | ||
6 | |||
7 | all : $(BIN) | ||
8 | |||
9 | $(BIN) : $(OBJS) | ||
10 | $(CC) $(CFLAGS) -o $(BIN) $(OBJS) | ||
11 | |||
12 | clean : | ||
13 | rm -f $(BIN) $(OBJS) *~ | ||
14 | |||
15 | install : $(BIN) | ||
16 | install -d $(DESTDIR)$(BIN_DIR) | ||
17 | install -s $(BIN) $(DESTDIR)$(BIN_DIR) | ||