Files
seer/tests/hellofft/Makefile
2025-04-06 10:13:21 -05:00

11 lines
122 B
Makefile

.PHONY: all
all: hellofft
hellofft: hellofft.c
gcc -g -o hellofft hellofft.c -lm
.PHONY: clean
clean:
rm -f hellofft