mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-python
synced 2026-01-15 01:52:56 +01:00
Make the MODDIR definition in proj.mk depend on the environment: - Change "=" assignment to "?=" - Prepend $(BUILD_TOOLS_PREFIX) to /opt/jw-build Signed-off-by: Jan Lindemann <jan@janware.com>
10 lines
308 B
Makefile
10 lines
308 B
Makefile
# to be included from inside the project directory
|
|
|
|
PROJECTS_DIR ?= $(TOPDIR)/..
|
|
|
|
ifeq ($(TARGET),mingw)
|
|
FLAVOUR_PATH_PREFIX = win32/
|
|
endif
|
|
MODDIR ?= $(firstword $(wildcard $(PROJECTS_DIR)/jw-build $(BUILD_TOOLS_PREFIX)/opt/$(FLAVOUR_PATH_PREFIX)jw-build))
|
|
|
|
USE_PROJECT_LIB = false
|