- remove old, unneeded -DUSE_OMP define. - wmake -no-openmp option to add '~openmp' to WM_COMPILE_CONTROL ENH: add bash completion handling for wmake
20 lines
436 B
Plaintext
20 lines
436 B
Plaintext
CPP = cpp -traditional-cpp $(GFLAGS)
|
|
|
|
include $(GENERAL_RULES)/standard
|
|
## include $(GENERAL_RULES)/Clang/openmp
|
|
|
|
# Fujitsu-specific
|
|
# ----
|
|
COMP_OPENMP = -fopenmp
|
|
LINK_OPENMP = -lfjomp
|
|
# ----
|
|
|
|
ifneq (,$(findstring ~openmp,$(WM_COMPILE_CONTROL)))
|
|
include $(GENERAL_RULES)/no-openmp
|
|
endif
|
|
|
|
include $(DEFAULT_RULES)/c
|
|
include $(DEFAULT_RULES)/c++
|
|
|
|
# -----------------------------------------------------------------------------
|