Files
seer/tests/helloprettyprint/Makefile
T
2025-05-18 12:35:29 -05:00

11 lines
189 B
Makefile

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