From ee46a3d88e8378e58f01ff0d521477ba0b7201fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Stenberg?= Date: Mon, 15 Dec 2008 23:42:19 +0000 Subject: Moved database builder into a separate directory, and gave it its' own Makefile. Now it compiles cleanly and builds a database if ran in root of music tree. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19448 a1c6a512-1295-4272-9138-f99709370657 --- tools/database/Makefile | 37 +++++++++++++++++++++++++++++++++++ tools/database/database.c | 49 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100644 tools/database/Makefile create mode 100644 tools/database/database.c (limited to 'tools/database') diff --git a/tools/database/Makefile b/tools/database/Makefile new file mode 100644 index 0000000..01416ec --- /dev/null +++ b/tools/database/Makefile @@ -0,0 +1,37 @@ +INCLUDE = -I../../firmware/export \ + -I../../apps -I../../uisimulator/sdl -I/usr/include/SDL +FIRMINC = -I../../firmware/include -fno-builtin +DEFINES = -D__PCTOOL__ -DHAVE_TAGCACHE -DSIMULATOR -DCONFIG_CODEC=1 \ + -DROCKBOX_LITTLE_ENDIAN -DROCKBOX_DIR=\".rockbox\" -DROCKBOX_HAS_LOGF \ + -DCONFIG_CODEC=1 +CFLAGS = -g $(INCLUDE) $(DEFINES) -Wno-pointer-sign + +SRC = database.o tagcache.o replaygain.o \ + metadata.o metadata_common.o mp3data.o \ + a52.o mp3.o adx.o mp4.o aiff.o mpc.o ape.o ogg.o \ + asap.o sid.o asf.o spc.o flac.o vorbis.o wave.o \ + mod.o wavpack.o monkeys.o \ + logf.o unicode.o ctype.o structec.o crc32.o io.o + +OBJ = $(SRC:.c=.o) + +# source code search path +VPATH = ../../apps ../../apps/metadata ../../firmware/common ../../firmware/ \ + ../../uisimulator/common + +all: database + +%.o : ../../uisimulator/common/%.c + @echo $( +#include "tagcache.h" + +int main(int argc, char **argv) +{ + tagcache_init(); + tagcache_build("."); + tagcache_reverse_scan(); + + return 0; +} + +/* stub to avoid including all of apps/misc.c */ +bool file_exists(const char *file) +{ + if (!stat(file)) + return true; + return false; +} + +/* stubs to avoid including thread-sdl.c */ +#include "kernel.h" +void mutex_init(struct mutex *m) +{ + (void)m; +} + +void mutex_lock(struct mutex *m) +{ + (void)m; +} + +void mutex_unlock(struct mutex *m) +{ + (void)m; +} + +void thread_sdl_thread_lock(void *me) +{ + (void)me; +} + +void * thread_sdl_thread_unlock(void) +{ + return (void*)1; +} + -- cgit v1.1