1
0
LearningCPP/Makefile

11 lines
104 B
Makefile
Raw Normal View History

2022-10-14 09:27:47 +01:00
build:
g++ -c main.cpp -o main.o
g++ -o t main.o
run: build
./t
edit:
nano main.cpp
e: edit
r: run