# ----------------------------------------------------------------------------
# Set defaults for FOAM_MODULE_APPBIN, FOAM_MODULE_LIBBIN
# based on project locations
#
# FOAM_MODULE_APPBIN ?= FOAM_APPBIN
# FOAM_MODULE_LIBBIN ?= FOAM_LIBBIN
#
# See: GENERAL_RULES/module-path-prefix
# ----------------------------------------------------------------------------

include $(GENERAL_RULES)/module-path-prefix

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

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

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