Files
seer/tests/hellopoem/Makefile
T

11 lines
140 B
Makefile

.PHONY: all
all: hellopoem
hellopoem: hellopoem.cpp
g++ -g -o hellopoem hellopoem.cpp
.PHONY: clean
clean:
rm -f hellopoem hellopoem.o