summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-12-17 18:45:42 +0100
committerDaniel Friesel <derf@finalrewind.org>2011-12-17 18:45:53 +0100
commitbc2de043182dd20d6e14875f1413c165cc9833fa (patch)
tree2387b71c62c504ff933486157408100562d77319 /Makefile
parent89a936eb754347c2037b07f74fc23bdc8e1a2b31 (diff)
add motionplus calibration utility
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 1f10491..015ee27 100644
--- a/Makefile
+++ b/Makefile
@@ -1,16 +1,19 @@
CFLAGS = -Wall -Wextra -pedantic
LDFLAGS = -lbluetooth -lcwiid
-all: bal mplog wibble
+all: bal mpcal mplog wibble
bal: bal.c
${CC} ${CFLAGS} ${LDFLAGS} -o $@ $<
+mpcal: mpcal.c
+ ${CC} ${CFLAGS} ${LDFLAGS} -o $@ $<
+
mplog: mplog.c
- $(CC) ${CFLAGS} ${LDFLAGS} -lm -o $@ $<
+ ${CC} ${CFLAGS} ${LDFLAGS} -lm -o $@ $<
wibble: wibble.c
- $(CC) ${CFLAGS} ${LDFLAGS} -lm -o $@ $<
+ ${CC} ${CFLAGS} ${LDFLAGS} -lm -o $@ $<
clean:
rm -f bal mplog wibble