mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-python
synced 2026-01-15 01:52:56 +01:00
Replace the jw-build build system by the jw-pkg build system. Signed-off-by: Jan Lindemann <jan@janware.com>
12 lines
463 B
Makefile
12 lines
463 B
Makefile
# To be included from inside the project directory
|
|
|
|
# -- Find JWBDIR
|
|
ifeq ($(TARGET),mingw)
|
|
FLAVOUR_PATH_PREFIX = win32/
|
|
endif
|
|
DEV_PROJECTS_DIR ?= $(TOPDIR)/..
|
|
JWBDIR_NAME ?= jw-pkg
|
|
JWBDIR_SEARCH_PATH ?= $(DEV_PROJECTS_DIR) $(BUILD_TOOLS_PREFIX)/opt/$(FLAVOUR_PATH_PREFIX)
|
|
JWBDIR ?= $(firstword $(wildcard $(addsuffix /$(JWBDIR_NAME),$(JWBDIR_SEARCH_PATH))))
|
|
|
|
USE_PROJECT_LIB = false
|