1
0
Fork 0
forked from len0rd/rockbox

initial build adjustment for the Rockbox build system

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8091 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2005-11-28 00:03:59 +00:00
parent f1c02478ef
commit 9c591f8535
3 changed files with 118 additions and 0 deletions

23
tools/ucl/Makefile Normal file
View file

@ -0,0 +1,23 @@
# __________ __ ___.
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
# \/ \/ \/ \/ \/
# $Id$
#
CFLAGS = -O2 -Iinclude
TARGET = ../uclpack
$(TARGET): uclpack.o src/libucl.a
$(CC) uclpack.o src/libucl.a -o $(TARGET)
uclpack.o: uclpack.c
src/libucl.a:
$(MAKE) -C src
clean:
rm -f $(TARGET)
$(MAKE) -C src clean