From bc2de043182dd20d6e14875f1413c165cc9833fa Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sat, 17 Dec 2011 18:45:42 +0100 Subject: add motionplus calibration utility --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3