summaryrefslogtreecommitdiff
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 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9TARGET = libucl.a
10
11CFLAGS = -I../include
12
13SOURCES = alloc.c io.c n2b_99.c n2b_d.c n2b_ds.c n2b_to.c n2d_99.c \
14 n2d_d.c n2d_ds.c n2d_to.c n2e_99.c n2e_d.c n2e_ds.c n2e_to.c ucl_crc.c \
15 ucl_dll.c ucl_init.c ucl_ptr.c ucl_str.c ucl_util.c
16
17OBJS = alloc.o io.o n2b_99.o n2b_d.o n2b_ds.o n2b_to.o n2d_99.o \
18 n2d_d.o n2d_ds.o n2d_to.o n2e_99.o n2e_d.o n2e_ds.o n2e_to.o ucl_crc.o \
19 ucl_dll.o ucl_init.o ucl_ptr.o ucl_str.o ucl_util.o
20
21$(TARGET): $(OBJS)
22 $(AR) ruv $(TARGET) $(OBJS)
23
24
25clean:
26 rm -f $(OBJS) $(TARGET)