CC=musl-gcc
CFLAGS=-Wall -static -Os -fno-asynchronous-unwind-tables -fno-stack-protector -Wl,-z -Wl,noexecstack -idirafter /usr/include

all: pause halt

clean:
	rm -f pause halt

