summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 18 insertions, 0 deletions
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