11 lines
176 B
Makefile
11 lines
176 B
Makefile
INC := -I include
|
|
|
|
main: compile link
|
|
|
|
compile:
|
|
g++ $(INC) -c -o build/main.o src/main.cpp
|
|
g++ $(INC) -c -o build/sorts.o src/sorts.cpp
|
|
|
|
link:
|
|
g++ -o bin/main.out build/*.o
|