mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
12 lines
183 B
Makefile
12 lines
183 B
Makefile
.PHONY: all
|
|
|
|
all: helloexceptions
|
|
|
|
helloexceptions: helloexceptions.cpp
|
|
g++ -g -o helloexceptions helloexceptions.cpp
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f helloexceptions helloexceptions.o
|
|
|