mkmakefile 724 字节
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 14 15 16
test ! -r $2/Makefile -o -O $2/Makefile || exit 0
echo "  GEN     $2/Makefile"

cat << EOF > $2/Makefile
L
Linus Torvalds 已提交
17 18 19 20 21 22 23 24 25 26
# Automatically generated by $0: don't edit

VERSION = $3
PATCHLEVEL = $4

KERNELSRC    := $1
KERNELOUTPUT := $2

MAKEFLAGS += --no-print-directory

J
Jan Beulich 已提交
27 28
.PHONY: all \$(MAKECMDGOALS)

29 30
all	:= \$(filter-out all Makefile,\$(MAKECMDGOALS))

L
Linus Torvalds 已提交
31
all:
32
	\$(MAKE) -C \$(KERNELSRC) O=\$(KERNELOUTPUT) \$(all)
L
Linus Torvalds 已提交
33

J
Jan Beulich 已提交
34
Makefile:;
L
Linus Torvalds 已提交
35

36 37
\$(all) %/: all
	@:
L
Linus Torvalds 已提交
38
EOF