sorting-algorithms/Makefile

11 lines
176 B
Makefile
Raw Normal View History

INC := -I include
2023-01-11 12:09:03 -06:00
main: compile link
compile:
g++ $(INC) -c -o build/main.o src/main.cpp
g++ $(INC) -c -o build/sorts.o src/sorts.cpp
2023-01-11 12:09:03 -06:00
link:
2023-01-11 12:33:46 -06:00
g++ -o bin/main.out build/*.o