summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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