From dfde95d0fc545ae938ae311c073334ade0707ecb Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 15 Dec 2011 19:49:43 +0100 Subject: initial commit --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1f10491 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +CFLAGS = -Wall -Wextra -pedantic +LDFLAGS = -lbluetooth -lcwiid + +all: bal mplog wibble + +bal: bal.c + ${CC} ${CFLAGS} ${LDFLAGS} -o $@ $< + +mplog: mplog.c + $(CC) ${CFLAGS} ${LDFLAGS} -lm -o $@ $< + +wibble: wibble.c + $(CC) ${CFLAGS} ${LDFLAGS} -lm -o $@ $< + +clean: + rm -f bal mplog wibble + +.PHONY: all clean -- cgit v1.2.3