aboutsummaryrefslogtreecommitdiff
path: root/bitsquat/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'bitsquat/Makefile')
-rw-r--r--bitsquat/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/bitsquat/Makefile b/bitsquat/Makefile
new file mode 100644
index 0000000..aaa47ec
--- /dev/null
+++ b/bitsquat/Makefile
@@ -0,0 +1,13 @@
+CC ?= cc
+CC_OPTS ?= -Wall -Wextra -g
+CC_OPTS_BT ?= -O0
+
+CC_CMD = $(CC) $(CC_OPTS) $(CC_OPTS_BT) $(CC_OPTS_EXTRA)
+
+all: bitsquat
+
+clean:
+ rm -f bitsquat
+
+bitsquat: bitsquat.c
+ $(CC_CMD) -o bitsquat bitsquat.c