Files
seer/tests/hellodebugbreak/Makefile
2022-10-01 09:46:43 -05:00

13 lines
180 B
Makefile

.PHONY: all
all: hellodebugbreak
hellodebugbreak: hellodebugbreak.c
g++ -g -o hellodebugbreak hellodebugbreak.c
.PHONY: clean
clean:
rm -f hellodebugbreak hellodebugbreak.o