Files
seer/tests/hello482/Makefile
T
2026-07-13 19:02:58 -05:00

12 lines
134 B
Makefile

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