Updated README.md, fixed merge sort, added checking output with bash script, and added sort arguments

This commit is contained in:
2023-02-11 19:22:37 -06:00
parent 266104fc4b
commit d544974809
9 changed files with 267 additions and 36 deletions
+7 -2
View File
@@ -1,13 +1,18 @@
INC := -I include
STD := -std=c++11
main: compile link
compile:
g++ $(INC) -c -o build/main.o src/main.cpp
g++ $(INC) -c -o build/sorts.o src/sorts.cpp
g++ $(INC) $(STD) -c -o build/main.o src/main.cpp
g++ $(INC) $(STD) -c -o build/sorts.o src/sorts.cpp
link:
g++ -o bin/main.out build/*.o
test: main
bin/main.out -a > test/SortTimes.txt
test/CheckSortedOutputs.sh
clean:
rm build/*.o bin/*.out test/OUTPUT/*.txt