2010-09-26 10:56:12 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# Generates a small Makefile used in the root of the output
|
|
|
|
# directory, to allow make to be started from there.
|
2011-08-31 23:35:01 +02:00
|
|
|
# The Makefile also allow for more convenient build of external modules
|
2010-09-26 10:56:12 +02:00
|
|
|
|
|
|
|
# Usage
|
|
|
|
# $1 - Kernel src directory
|
|
|
|
# $2 - Output directory
|
|
|
|
|
|
|
|
|
|
|
|
test ! -r $2/Makefile -o -O $2/Makefile || exit 0
|
|
|
|
# Only overwrite automatically generated Makefiles
|
|
|
|
# (so we do not overwrite buildroot Makefile)
|
|
|
|
if test -e $2/Makefile && ! grep -q Automatically $2/Makefile
|
|
|
|
then
|
|
|
|
exit 0
|
|
|
|
fi
|
2015-10-08 22:03:37 +02:00
|
|
|
echo " GEN $2/Makefile"
|
2010-09-26 10:56:12 +02:00
|
|
|
|
|
|
|
cat << EOF > $2/Makefile
|
|
|
|
# Automatically generated by $0: don't edit
|
|
|
|
|
2018-11-02 12:29:33 +01:00
|
|
|
ifeq ("\$(origin V)", "command line")
|
|
|
|
VERBOSE := \$(V)
|
|
|
|
endif
|
|
|
|
ifneq (\$(VERBOSE),1)
|
|
|
|
Q := @
|
|
|
|
endif
|
|
|
|
|
2010-09-26 10:56:12 +02:00
|
|
|
lastword = \$(word \$(words \$(1)),\$(1))
|
|
|
|
makedir := \$(dir \$(call lastword,\$(MAKEFILE_LIST)))
|
|
|
|
|
|
|
|
MAKEARGS := -C $1
|
|
|
|
MAKEARGS += O=\$(if \$(patsubst /%,,\$(makedir)),\$(CURDIR)/)\$(patsubst %/,%,\$(makedir))
|
|
|
|
|
|
|
|
MAKEFLAGS += --no-print-directory
|
|
|
|
|
2015-07-16 23:16:46 +02:00
|
|
|
.PHONY: _all \$(MAKECMDGOALS)
|
2010-09-26 10:56:12 +02:00
|
|
|
|
2013-11-06 00:28:20 +01:00
|
|
|
all := \$(filter-out Makefile,\$(MAKECMDGOALS))
|
2010-09-26 10:56:12 +02:00
|
|
|
|
2013-11-06 00:28:20 +01:00
|
|
|
_all:
|
2018-11-02 12:29:33 +01:00
|
|
|
\$(Q)umask 0022 && \$(MAKE) \$(MAKEARGS) \$(all)
|
2010-09-26 10:56:12 +02:00
|
|
|
|
|
|
|
Makefile:;
|
|
|
|
|
2013-11-06 00:28:20 +01:00
|
|
|
\$(all): _all
|
2010-09-26 10:56:12 +02:00
|
|
|
@:
|
|
|
|
|
2013-11-06 00:28:20 +01:00
|
|
|
%/: _all
|
2010-09-26 10:56:12 +02:00
|
|
|
@:
|
|
|
|
EOF
|