8 lines
104 B
Makefile
8 lines
104 B
Makefile
main: compile link
|
|
|
|
compile:
|
|
g++ -c -o build/main.o src/main.cpp
|
|
|
|
link:
|
|
g++ -o bin/main.out build/*.o
|