summaryrefslogtreecommitdiff
path: root/firmware/test
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 /firmware/test
parent8cfbfe61350c977bad603c89500608ef962c561d (diff)
downloadrockbox-e7cc45929aec0f8c2b8300cebfea3b2ac9a51c29.tar.gz
rockbox-e7cc45929aec0f8c2b8300cebfea3b2ac9a51c29.zip
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
Diffstat (limited to 'firmware/test')
-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 0000000000..a9e54576d7
--- /dev/null
+++ b/firmware/test/id3/Makefile
@@ -0,0 +1,13 @@
1TARGET = id3test
2
3OBJS = id3.o
4CFLAGS = -g -DDEBUG_STANDALONE -c -o
5
6$(TARGET) : $(OBJS)
7 $(CC) -o $(TARGET) $(OBJS)
8
9id3.o:../../id3.c
10 $(CC) $(CFLAGS) $@ $<
11
12clean:
13 rm -f $(OBJS) $(TARGET) *~