holey-toys/Makefile

18 lines
253 B
Makefile
Raw Normal View History

2024-03-04 20:38:46 +00:00
CC = gcc
CFLAGS_EXTRA =
CFLAGS = -Wall -Wextra -Wpedantic -std=c17 -O3
2024-03-04 20:24:03 +00:00
.PHONY: clean
hbas: hbas.c
${CC} ${CFLAGS} ${CFLAGS_EXTRA} hbas.c -o hbas
example: hbas example.S
2024-03-04 20:30:03 +00:00
./hbas < example.S > example
2024-03-04 20:24:03 +00:00
xxd example
clean:
rm example hbas
all:
hbas