openfoam/wmake/rules/linux64Amd/c
2020-05-06 13:11:09 +02:00

14 lines
373 B
Plaintext

# AMD compiler - a clang variant
include $(GENERAL_RULES)/Clang/c
cARCH = -m64
# Compile option is non-mandatory, but must be non-empty
sinclude $(DEFAULT_RULES)/c$(WM_COMPILE_OPTION)
cFLAGS = $(cARCH) $(GFLAGS) $(cWARN) $(cOPT) $(cDBUG) $(LIB_HEADER_DIRS) -fPIC
ctoo = $(WM_SCHEDULER) $(cc) $(cFLAGS) -c $< -o $@
include $(GENERAL_RULES)/Amd/link-c