mkmakefile 866 字节
Newer Older
1
#!/bin/sh
2
# SPDX-License-Identifier: GPL-2.0
3 4 5 6 7 8 9 10 11
# Generates a small Makefile used in the root of the output
# directory, to allow make to be started from there.
# The Makefile also allow for more convinient build of external modules

# Usage
# $1 - Kernel src directory

# Only overwrite automatically generated Makefiles
# (so we do not overwrite kernel Makefile)
12
if test -e Makefile && ! grep -q Automatically Makefile
13 14 15 16
then
	exit 0
fi
if [ "${quiet}" != "silent_" ]; then
17
	echo "  GEN     Makefile"
18 19
fi

20
cat << EOF > Makefile
21 22 23 24 25 26 27 28 29 30 31
# Automatically generated by $0: don't edit

ifeq ("\$(origin V)", "command line")
VERBOSE := \$(V)
endif
ifneq (\$(VERBOSE),1)
Q := @
endif

MAKEFLAGS += --no-print-directory

32
.PHONY: __sub-make \$(MAKECMDGOALS)
33

34
__sub-make:
35
	\$(Q)\$(MAKE) -C $1 O=\$(CURDIR) \$(MAKECMDGOALS)
36

37
\$(filter-out __sub-make, \$(MAKECMDGOALS)): __sub-make
38 39
	@:
EOF