mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
12 lines
134 B
Makefile
12 lines
134 B
Makefile
.PHONY: all
|
|
|
|
all: hello489
|
|
|
|
hello489: hello489.cpp
|
|
g++ -g -o hello489 hello489.cpp
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f hello489 hello489.o
|
|
|