From 12645f4533216d4f0d42708faadc789888640ac2 Mon Sep 17 00:00:00 2001 From: David Timber Date: Wed, 6 Nov 2024 13:15:43 +0100 Subject: Add bitsquat --- bitsquat/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bitsquat/Makefile (limited to 'bitsquat/Makefile') 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 -- cgit