# ----------------------------------------------------------------------------
# Set defaults for FOAM_MODULE_APPBIN, FOAM_MODULE_LIBBIN
# based on user locations
#
# FOAM_MODULE_APPBIN ?= FOAM_USER_APPBIN
# FOAM_MODULE_LIBBIN ?= FOAM_USER_LIBBIN
#
# See: GENERAL_RULES/module-path-prefix
# ----------------------------------------------------------------------------

include $(GENERAL_RULES)/module-path-prefix

ifeq (,$(strip $(FOAM_MODULE_APPBIN)))
    FOAM_MODULE_APPBIN = $(FOAM_USER_APPBIN)
endif

ifeq (,$(strip $(FOAM_MODULE_LIBBIN)))
    FOAM_MODULE_LIBBIN = $(FOAM_USER_LIBBIN)
endif

# ---------------------------------------------------------------------------
