diff options
author | David Timber <dxdt@dev.snart.me> | 2024-11-06 13:15:43 +0100 |
---|---|---|
committer | David Timber <dxdt@dev.snart.me> | 2024-11-06 13:15:43 +0100 |
commit | 12645f4533216d4f0d42708faadc789888640ac2 (patch) | |
tree | 611d40f72caeb9aa3e15706653187f7d7138b4b2 /bitsquat/Makefile | |
parent | 0bf2a61aed938df9a2dd5188818255c977d4a77b (diff) |
Add bitsquat
Diffstat (limited to 'bitsquat/Makefile')
-rw-r--r-- | bitsquat/Makefile | 13 |
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 |