mkmakefile 1.1 KB
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
if [ "${quiet}" != "silent_" ]; then
	echo "  GEN     $2/Makefile"
fi
23 24

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

VERSION = $3
PATCHLEVEL = $4

30 31 32 33 34
lastword = \$(word \$(words \$(1)),\$(1))
makedir := \$(dir \$(call lastword,\$(MAKEFILE_LIST)))

MAKEARGS := -C $1
MAKEARGS += O=\$(if \$(patsubst /%,,\$(makedir)),\$(CURDIR)/)\$(patsubst %/,%,\$(makedir))
L
Linus Torvalds 已提交
35 36 37

MAKEFLAGS += --no-print-directory

J
Jan Beulich 已提交
38 39
.PHONY: all \$(MAKECMDGOALS)

40 41
all	:= \$(filter-out all Makefile,\$(MAKECMDGOALS))

L
Linus Torvalds 已提交
42
all:
43
	\$(MAKE) \$(MAKEARGS) \$(all)
L
Linus Torvalds 已提交
44

J
Jan Beulich 已提交
45
Makefile:;
L
Linus Torvalds 已提交
46

47 48
\$(all) %/: all
	@:
49

L
Linus Torvalds 已提交
50
EOF