1
0
LearningCPP/Makefile
2022-11-18 12:33:13 +00:00

11 lines
95 B
Makefile

build:
g++ -c *.cpp -o *.o
g++ -o t *.o
run: build
./t
edit:
nano main.cpp
e: edit
r: run