15 lines
560 B
Makefile
15 lines
560 B
Makefile
|
|
# Common fragment for all jw-pkg-aware Makefiles. Its contents is pulled in
|
||
|
|
# - from every directory of every project
|
||
|
|
# - from the projects directory (i.e. the directory containing projects)
|
||
|
|
|
||
|
|
ifndef COMMON_MK_INCLUDED
|
||
|
|
COMMON_MK_INCLUDED = true
|
||
|
|
|
||
|
|
Q ?= @
|
||
|
|
INTERACTIVE ?= auto
|
||
|
|
BROWSER ?= xdg-open
|
||
|
|
JWB_SCRIPT_DIR ?= $(firstword $(wildcard $(JWBDIR)/scripts $(JWBDIR)/bin) jwb-script-dir-not-found)
|
||
|
|
|
||
|
|
LIST_VCS_FILES = /bin/bash $(JWB_SCRIPT_DIR)/scm.sh ls-files
|
||
|
|
|
||
|
|
endif
|