Files
seer/tests/hellorrmnwe/Makefile
T

11 lines
109 B
Makefile
Raw Normal View History

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