Files
seer/tests/helloprettyprint/Makefile
T
2025-11-03 17:37:19 -06:00

11 lines
192 B
Makefile

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