summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 0000000..a9e5457
--- /dev/null
+++ b/firmware/test/id3/Makefile
@@ -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) *~