sorting-algorithms/Makefile

8 lines
104 B
Makefile
Raw Normal View History

2023-01-11 12:09:03 -06:00
main: compile link
compile:
2023-01-11 12:33:46 -06:00
g++ -c -o build/main.o src/main.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