Files
seer/tests/hellodebugbreak/Makefile
T

13 lines
180 B
Makefile
Raw Normal View History

2022-10-01 09:46:43 -05:00
.PHONY: all
all: hellodebugbreak
hellodebugbreak: hellodebugbreak.c
g++ -g -o hellodebugbreak hellodebugbreak.c
.PHONY: clean
clean:
rm -f hellodebugbreak hellodebugbreak.o