holey-toys/Makefile
2024-03-04 22:24:03 +02:00

18 lines
262 B
Makefile

CC ?= gcc
CFLAGS_EXTRA ?=
CFLAGS ?= -Wall -Wextra -Wpedantic -std=c17 -O3
.PHONY: clean
hbas: hbas.c
${CC} ${CFLAGS} ${CFLAGS_EXTRA} hbas.c -o hbas
example: hbas example.S
./hbas --bin < example.S > example
xxd example
clean:
rm example hbas
all:
hbas