Files
seer/tests/hellocurses/Makefile
T
2025-01-25 11:04:39 -06:00

14 lines
229 B
Makefile

.PHONY: all
all: helloworld triangle
helloworld: helloworld.cpp
g++ -g -o helloworld helloworld.cpp -lncurses
triangle: triangle.cpp
g++ -g -o triangle triangle.cpp -lncurses
.PHONY: clean
clean:
rm -f helloworld triangle