mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 03:53:32 +01:00
make: Support GNUmakefile too, where applicable
Add support for GNUmakefile, where originally only Makefile was supported. Not done everywhere, as some of the code involving makefiles is dead anyway. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
14c451854b
commit
f19831245f
7 changed files with 14 additions and 12 deletions
|
|
@ -28,7 +28,7 @@ PREREQ_RELEASE ?= pull
|
|||
ifneq ($(wildcard $(PROJECTS_TXT)),)
|
||||
PROJECTS ?= $(shell cat $(PROJECTS_TXT) | sed '/^ *\#/ d')
|
||||
else
|
||||
PROJECTS ?= $(shell ls -d */Makefile 2>/dev/null | sed 's%/[^/]*%%')
|
||||
PROJECTS ?= $(shell ls -d */GNUmakefile */Makefile 2>/dev/null | sed 's%/[^/]*%%' | sort -u)
|
||||
endif
|
||||
|
||||
ifeq ($(JW_BUILD_VERBOSE),true)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue