summaryrefslogtreecommitdiffstats
path: root/tools/ucl/src/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/src/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/src/Makefile')
-rw-r--r--tools/ucl/src/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/ucl/src/Makefile b/tools/ucl/src/Makefile
new file mode 100644
index 0000000000..0cfae54cb7
--- /dev/null
+++ b/tools/ucl/src/Makefile
@@ -0,0 +1,26 @@
+# __________ __ ___.
+# Open \______ \ ____ ____ | | _\_ |__ _______ ___
+# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
+# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
+# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
+# \/ \/ \/ \/ \/
+# $Id$
+#
+TARGET = libucl.a
+
+CFLAGS = -I../include
+
+SOURCES = alloc.c io.c n2b_99.c n2b_d.c n2b_ds.c n2b_to.c n2d_99.c \
+ n2d_d.c n2d_ds.c n2d_to.c n2e_99.c n2e_d.c n2e_ds.c n2e_to.c ucl_crc.c \
+ ucl_dll.c ucl_init.c ucl_ptr.c ucl_str.c ucl_util.c
+
+OBJS = alloc.o io.o n2b_99.o n2b_d.o n2b_ds.o n2b_to.o n2d_99.o \
+ n2d_d.o n2d_ds.o n2d_to.o n2e_99.o n2e_d.o n2e_ds.o n2e_to.o ucl_crc.o \
+ ucl_dll.o ucl_init.o ucl_ptr.o ucl_str.o ucl_util.o
+
+$(TARGET): $(OBJS)
+ $(AR) ruv $(TARGET) $(OBJS)
+
+
+clean:
+ rm -f $(OBJS) $(TARGET)