mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
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
This commit is contained in:
parent
8cfbfe6135
commit
e7cc45929a
1 changed files with 13 additions and 0 deletions
13
firmware/test/id3/Makefile
Normal file
13
firmware/test/id3/Makefile
Normal file
|
@ -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) *~
|
Loading…
Add table
Add a link
Reference in a new issue