Files
seer/tests/hellostack/Makefile
T
2024-10-06 09:55:22 -05:00

11 lines
130 B
Makefile

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