Moved Makefile to haversine directory
This commit is contained in:
20
Makefile
20
Makefile
@@ -1,20 +0,0 @@
|
|||||||
mk_haversine_fscanf:
|
|
||||||
clang++ -g haversine/cpp/fscanf.cpp haversine/cpp/haversine.cpp -o haversine/cpp/haverscan
|
|
||||||
|
|
||||||
run_haversine_fscanf:
|
|
||||||
cd ./haversine/cpp && ./haverscan
|
|
||||||
|
|
||||||
mk_haversine_strtok:
|
|
||||||
clang++ -g haversine/cpp/strtok.cpp haversine/cpp/haversine.cpp -o haversine/cpp/haverstrtok
|
|
||||||
|
|
||||||
run_haversine_strtok:
|
|
||||||
cd ./haversine/cpp && ./haverstrtok
|
|
||||||
|
|
||||||
mk_test:
|
|
||||||
clang++ -g -lpthread haversine/cpp/test.cpp haversine/cpp/haversine.cpp -o haversine/cpp/test
|
|
||||||
|
|
||||||
run_test:
|
|
||||||
cd ./haversine/cpp && ./test
|
|
||||||
|
|
||||||
run_haversine_python_json:
|
|
||||||
python ./haversine/python/haversine_json.py
|
|
||||||
20
haversine/Makefile
Normal file
20
haversine/Makefile
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
mk_haversine_fscanf:
|
||||||
|
clang++ -g cpp/fscanf.cpp cpp/haversine.cpp -o cpp/haverscan
|
||||||
|
|
||||||
|
run_haversine_fscanf:
|
||||||
|
cd ./cpp && ./haverscan
|
||||||
|
|
||||||
|
mk_haversine_strtok:
|
||||||
|
clang++ -g cpp/strtok.cpp cpp/haversine.cpp -o cpp/haverstrtok
|
||||||
|
|
||||||
|
run_haversine_strtok:
|
||||||
|
cd ./cpp && ./haverstrtok
|
||||||
|
|
||||||
|
mk_test:
|
||||||
|
clang++ -g -lpthread cpp/test.cpp cpp/haversine.cpp -o cpp/test
|
||||||
|
|
||||||
|
run_test:
|
||||||
|
cd ./cpp && ./test
|
||||||
|
|
||||||
|
run_haversine_python_json:
|
||||||
|
python ./python/haversine_json.py
|
||||||
Reference in New Issue
Block a user