Files
seer/tests/hello489/Makefile
T

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