mkmakefile 896 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12
#!/bin/sh
# 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
# $2 - Output directory
# $3 - version
# $4 - patchlevel


13
test ! -r $2/Makefile -o -O $2/Makefile || exit 0
14 15
# Only overwrite automatically generated Makefiles
# (so we do not overwrite kernel Makefile)
16
if test -e $2/Makefile && ! grep -q Automatically $2/Makefile
17 18 19
then
	exit 0
fi
20 21 22
echo "  GEN     $2/Makefile"

cat << EOF > $2/Makefile
L
Linus Torvalds 已提交
23 24 25 26 27 28 29 30 31 32
# Automatically generated by $0: don't edit

VERSION = $3
PATCHLEVEL = $4

KERNELSRC    := $1
KERNELOUTPUT := $2

MAKEFLAGS += --no-print-directory

J
Jan Beulich 已提交
33 34
.PHONY: all \$(MAKECMDGOALS)

35 36
all	:= \$(filter-out all Makefile,\$(MAKECMDGOALS))

L
Linus Torvalds 已提交
37
all:
38
	\$(MAKE) -C \$(KERNELSRC) O=\$(KERNELOUTPUT) \$(all)
L
Linus Torvalds 已提交
39

J
Jan Beulich 已提交
40
Makefile:;
L
Linus Torvalds 已提交
41

42 43
\$(all) %/: all
	@:
L
Linus Torvalds 已提交
44
EOF