diff options
| author | Miika Pekkarinen <miipekk@ihme.org> | 2006-11-10 08:03:33 +0000 |
|---|---|---|
| committer | Miika Pekkarinen <miipekk@ihme.org> | 2006-11-10 08:03:33 +0000 |
| commit | 0dd7ea2d712944b21ede9f57bebd1009b03932e6 (patch) | |
| tree | dc6065067aa862cc6a71c206b67554270fe507bd /tools/Makefile | |
| parent | ae221f140231cb2fd4833443d7810dfce03c606a (diff) | |
| download | rockbox-0dd7ea2d712944b21ede9f57bebd1009b03932e6.zip rockbox-0dd7ea2d712944b21ede9f57bebd1009b03932e6.tar.gz rockbox-0dd7ea2d712944b21ede9f57bebd1009b03932e6.tar.bz2 rockbox-0dd7ea2d712944b21ede9f57bebd1009b03932e6.tar.xz | |
Support building tagcache db natively on PC using the core of the
Rockbox tagcache database engine. Only host endian support at the
moment and no command line parameters. Mainly for developers for
debugging at the moment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11497 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/Makefile')
| -rw-r--r-- | tools/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index 1f8be87..d6c885d 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -10,7 +10,7 @@ CFLAGS := -O -ansi -g LDFLAGS := -g CLEANALL := scramble descramble iriver sh2d bmp2rb rdf2binary convbdf \ - generate_rocklatin mkboot ipod_fw codepages uclpack mi4 gigabeat + generate_rocklatin mkboot ipod_fw codepages uclpack mi4 gigabeat database all: @echo "Run make in your build directory!" @@ -38,6 +38,13 @@ mkboot: mkboot.c ipod_fw: ipod_fw.c $(SILENT)$(CC) -g $+ -o $@ +database: database.c ../apps/tagcache.c ../apps/metadata.c \ +../firmware/id3.c ../firmware/common/unicode.c \ +../firmware/common/crc32.c ../uisimulator/common/io.c \ +../firmware/mp3data.c ../firmware/logf.c + $(SILENT)$(CC) -g -I../firmware/export -iquote ../firmware/include \ +-D__PCTOOL__ -DHAVE_TAGCACHE -DROCKBOX_HAS_LOGF -DSIMULATOR -ldl -I../apps $+ -o $@ + convbdf: convbdf.c $(SILENT)$(CC) -g $+ -o $@ |