Files
seer/tests/hello481/Makefile
T
2026-07-13 17:08:17 -05:00

12 lines
134 B
Makefile

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