aboutsummaryrefslogtreecommitdiff
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, 14 insertions, 0 deletions
diff --git a/util/lbtdump/Makefile b/util/lbtdump/Makefile
new file mode 100644
index 0000000000..f6a4fbd40a
--- /dev/null
+++ b/util/lbtdump/Makefile
@@ -0,0 +1,14 @@
+TARGET=lbtdump
+
+CC=gcc
+CFLAGS=-g -O -Wall
+
+all: $(TARGET)
+
+$(TARGET): *.c
+ $(CC) $(CFLAGS) $< -o $@
+
+clean:
+ rm -f $(TARGET)
+
+