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:
Daniel Stenberg 2002-04-23 08:41:37 +00:00
parent 8cfbfe6135
commit e7cc45929a

View 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) *~