Files
seer/tests/hellorrmnwe/Makefile
T
2023-11-12 12:11:38 -06:00

11 lines
109 B
Makefile

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