1
0
Fork 0
forked from len0rd/rockbox
foxbox/firmware/test/id3/Makefile
Daniel Stenberg e7cc45929a 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
2002-04-23 08:41:37 +00:00

13 lines
195 B
Makefile

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