Files
antelope/examples/basic/Makefile
T
2026-07-28 22:17:49 -04:00

16 lines
326 B
Makefile

# Basic GNU Make build — uses implicit rules
#
# Usage: antelope -gnu (builds "all" using implicit rules)
# antelope -gnu clean (cleans build artifacts)
#
# In GNU mode, the %.o: %.c implicit rule handles hello.c → hello.o for free.
all: hello
hello: hello.o
.PHONY: clean
clean:
rm -f hello hello.o