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 0000000000..a9e54576d7
--- /dev/null
+++ b/firmware/test/id3/Makefile
@@ -0,0 +1,13 @@
1TARGET = id3test
2
3OBJS = id3.o
4CFLAGS = -g -DDEBUG_STANDALONE -c -o
5
6$(TARGET) : $(OBJS)
7 $(CC) -o $(TARGET) $(OBJS)
8
9id3.o:../../id3.c
10 $(CC) $(CFLAGS) $@ $<
11
12clean:
13 rm -f $(OBJS) $(TARGET) *~