11 lines
104 B
Makefile
11 lines
104 B
Makefile
build:
|
|
g++ -c main.cpp -o main.o
|
|
g++ -o t main.o
|
|
run: build
|
|
./t
|
|
edit:
|
|
nano main.cpp
|
|
e: edit
|
|
r: run
|
|
|