summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-04-23 08:41:37 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-04-23 08:41:37 +0000
commite7cc45929aec0f8c2b8300cebfea3b2ac9a51c29 (patch)
tree5c171ee23af3138c753538f907bb38841214d484
parent8cfbfe61350c977bad603c89500608ef962c561d (diff)
downloadrockbox-e7cc45929aec0f8c2b8300cebfea3b2ac9a51c29.zip
rockbox-e7cc45929aec0f8c2b8300cebfea3b2ac9a51c29.tar.gz
rockbox-e7cc45929aec0f8c2b8300cebfea3b2ac9a51c29.tar.bz2
rockbox-e7cc45929aec0f8c2b8300cebfea3b2ac9a51c29.tar.xz
run make here to build a unix tool for checking id3 tags
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@184 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/test/id3/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/firmware/test/id3/Makefile b/firmware/test/id3/Makefile
new file mode 100644
index 0000000..a9e5457
--- /dev/null
+++ b/firmware/test/id3/Makefile
@@ -0,0 +1,13 @@
+TARGET = id3test
+
+OBJS = id3.o
+CFLAGS = -g -DDEBUG_STANDALONE -c -o
+
+$(TARGET) : $(OBJS)
+ $(CC) -o $(TARGET) $(OBJS)
+
+id3.o:../../id3.c
+ $(CC) $(CFLAGS) $@ $<
+
+clean:
+ rm -f $(OBJS) $(TARGET) *~