mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-python
synced 2026-01-15 09:53:32 +01:00
PROJECTS_DIR is a final version of where the projects to be compiled against are. DEV_PROJECTS_DIR is merely a candidate, used in proj.mk, currently only there. Signed-off-by: Jan Lindemann <jan@janware.com>
10 lines
312 B
Makefile
10 lines
312 B
Makefile
# to be included from inside the project directory
|
|
|
|
DEV_PROJECTS_DIR ?= $(TOPDIR)/..
|
|
|
|
ifeq ($(TARGET),mingw)
|
|
FLAVOUR_PATH_PREFIX = win32/
|
|
endif
|
|
MODDIR ?= $(firstword $(wildcard $(DEV_PROJECTS_DIR)/jw-build $(BUILD_TOOLS_PREFIX)/opt/$(FLAVOUR_PATH_PREFIX)jw-build))
|
|
|
|
USE_PROJECT_LIB = false
|