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

18 lines
253 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 < example.S > example
xxd example
clean:
rm example hbas
all:
hbas