rockbox/firmware/test/id3/Makefile
Daniel Stenberg 4b2efbaf03 define SIMULATOR too
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@324 a1c6a512-1295-4272-9138-f99709370657
2002-04-30 12:42:08 +00:00

13 lines
216 B
Makefile

TARGET = id3test
OBJS = id3.o
CFLAGS = -g -W -Wall -DDEBUG_STANDALONE -DSIMULATOR -c -o
$(TARGET) : $(OBJS)
$(CC) -o $(TARGET) $(OBJS)
id3.o:../../id3.c
$(CC) $(CFLAGS) $@ $<
clean:
rm -f $(OBJS) $(TARGET) *~