calc/Makefile.wps

6 lines
71 B
Makefile

build:
g++ -o calc main.cpp
run: build
.\calc.exe
clean:
rm calc.exe