summaryrefslogtreecommitdiff
path: root/util/lbtdump/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'util/lbtdump/Makefile')
-rw-r--r--util/lbtdump/Makefile14
1 files changed, 0 insertions, 14 deletions
diff --git a/util/lbtdump/Makefile b/util/lbtdump/Makefile
deleted file mode 100644
index 9e923aea6a..0000000000
--- a/util/lbtdump/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-TARGET=lbtdump
-
-CC=gcc
-CFLAGS=-g -O -Wall
-
-all: $(TARGET)
-
-$(TARGET): *.c
- $(CC) $(CFLAGS) $< -o $@
-
-clean:
- rm -f $(TARGET)
-
-