# Unfortunately, macos documentation is often pretty awful. In this case, they've forgotten to document
# makefile format. I am resorting to following the rather good openbsd docs. If something breaks, apologies.

CPP = clang++
CC = clang
LD = clang++
CCARGS = -g -I../../automatic/Library/boost_1_72_0 -std=c++17 -Wall -Wextra -Wno-dangling-else -c -D_DEBUG -DUNIX -fvisibility=hidden -fvisibility-inlines-hidden
CARGS = -c -D_DEBUG -DUNIX -Wall -Wextra
LARGS = -g -v -D_DEBUG -DUNIX -std=c++17 -L /usr/lib -L ../../automatic/Library/boost_1_72_0/stage/lib -o ssc -l boost_date_time-clang-darwin120-mt-sd-x64-1_72 -l boost_filesystem-clang-darwin120-mt-sd-x64-1_72 -l boost_program_options-clang-darwin120-mt-sd-x64-1_72 -l pthread -l stdc++
LTARGS = -g -D_DEBUG -DUNIX -std=c++17 -L /usr/lib -L ../../automatic/Library/boost_1_72_0/stage/lib -o ssc-test -l boost_filesystem-clang-darwin120-mt-sd-x64-1_72 -l pthread -l stdc++

include dependencies.mk
