summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 55a77cc..2f9f4ac 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
CFLAGS = -Wall -Wextra -pedantic -Wno-unused-parameter
LDFLAGS = -lbluetooth -lcwiid
-all: bal mpcal mplog wibble
+all: bal mpcal mplog wibble wiispkr
bal: bal.c
${CC} ${CFLAGS} ${LDFLAGS} -o $@ $<
@@ -15,6 +15,9 @@ mplog: mplog.c
wibble: wibble.c
${CC} ${CFLAGS} ${LDFLAGS} -lm -o $@ $<
+wiispkr: wiispkr.c
+ ${CC} ${CFLAGS} -lm -lbluetooth -lcwiimote -o $@ $<
+
clean:
rm -f bal mplog wibble