holey-toys/Makefile
2024-03-11 05:21:52 -05:00

18 lines
264 B
Makefile

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