summaryrefslogtreecommitdiff
path: root/tools/ucl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/ucl/Makefile')
-rw-r--r--tools/ucl/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/tools/ucl/Makefile b/tools/ucl/Makefile
new file mode 100644
index 0000000000..aa0736767a
--- /dev/null
+++ b/tools/ucl/Makefile
@@ -0,0 +1,23 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9CFLAGS = -O2 -Iinclude
10
11TARGET = ../uclpack
12
13$(TARGET): uclpack.o src/libucl.a
14 $(CC) uclpack.o src/libucl.a -o $(TARGET)
15
16uclpack.o: uclpack.c
17
18src/libucl.a:
19 $(MAKE) -C src
20
21clean:
22 rm -f $(TARGET)
23 $(MAKE) -C src clean \ No newline at end of file