mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
13 lines
180 B
Makefile
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
|
|
|