Implement haversine generator

This commit is contained in:
2023-05-28 23:29:02 +01:00
parent 66aa3500d6
commit 5c742fe1f7
13 changed files with 464 additions and 0 deletions

10
haversine_02/build Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/bash
CC=clang++
CFLAGS="-g -Wall -Wextra"
SRC=*.cpp
OUT=main
set -x
$CC $CFLAGS $SRC -o $OUT