summaryrefslogtreecommitdiff
path: root/firmware/test/snprintf/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/test/snprintf/Makefile')
-rw-r--r--firmware/test/snprintf/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/firmware/test/snprintf/Makefile b/firmware/test/snprintf/Makefile
new file mode 100644
index 0000000000..39f128ed8a
--- /dev/null
+++ b/firmware/test/snprintf/Makefile
@@ -0,0 +1,16 @@
1
2TARGET = snprintf
3
4OBJS = snprintf.o test.o
5
6CFLAGS = -I../../include
7
8$(TARGET): $(OBJS)
9
10snprintf.o: ../../common/sprintf.c
11 $(CC) -c $< -o $@
12
13test.o: test.c
14
15clean:
16 rm -f $(OBJS) \ No newline at end of file