mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- allows better separation from compiler settings - use -fPIC instead of legacy -KPIC for intel compiler
18 lines
413 B
Plaintext
18 lines
413 B
Plaintext
CPP = cpp -traditional-cpp $(GFLAGS) -Ddarwin
|
|
|
|
PROJECT_LIBS = -l$(WM_PROJECT) -ldl
|
|
|
|
include $(GENERAL_RULES)/standard
|
|
include $(GENERAL_RULES)/Clang/openmp
|
|
|
|
include $(DEFAULT_RULES)/c
|
|
include $(DEFAULT_RULES)/c++
|
|
|
|
# Shared library extension (with '.' separator)
|
|
EXT_SO = .dylib
|
|
|
|
# Define general os-type
|
|
GFLAGS += -Ddarwin
|
|
|
|
# -----------------------------------------------------------------------------
|