summaryrefslogtreecommitdiff
path: root/tools/ucl/Makefile
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-11-28 00:03:59 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-11-28 00:03:59 +0000
commit9c591f85354b6f856ce65a7a1531fbc8a806c8dd (patch)
tree467d40c9333287984402d643b97cef34b9854fda /tools/ucl/Makefile
parentf1c02478ef169f34467721788e962fabf8c6d1f1 (diff)
downloadrockbox-9c591f85354b6f856ce65a7a1531fbc8a806c8dd.tar.gz
rockbox-9c591f85354b6f856ce65a7a1531fbc8a806c8dd.zip
initial build adjustment for the Rockbox build system
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8091 a1c6a512-1295-4272-9138-f99709370657
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