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