Files
seer/tests/helloexceptions/Makefile
T
2023-04-09 12:01:10 -05:00

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