ENH: add handling of lib/exe file extensions in makefile (#1238)

- relocates some logic from makefiles/general into platform-specific
  overrides
This commit is contained in:
Mark Olesen
2019-03-14 10:42:57 +01:00
committed by Andrew Heather
parent 5f527c28aa
commit d2eb50832c
5 changed files with 34 additions and 28 deletions

View File

@ -7,3 +7,8 @@ include $(GENERAL_RULES)/Clang/openmp
include $(DEFAULT_RULES)/c
include $(DEFAULT_RULES)/c++
# Shared library extension (with '.' separator)
EXT_SO = .dylib
# -----------------------------------------------------------------------------