aboutsummaryrefslogtreecommitdiff
path: root/bitsquat/Makefile
blob: aaa47ec304365352c121bd9b2db6c746782ddffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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