blob: a22cbedd3b3ec0738379c283d4fb2df5b33209ec [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#!/bin/sh
2# Generates a small Makefile used in the root of the output
3# directory, to allow make to be started from there.
4# The Makefile also allow for more convinient build of external modules
5
6# Usage
7# $1 - Kernel src directory
8# $2 - Output directory
9# $3 - version
10# $4 - patchlevel
11
12
13cat << EOF
14# Automatically generated by $0: don't edit
15
16VERSION = $3
17PATCHLEVEL = $4
18
19KERNELSRC := $1
20KERNELOUTPUT := $2
21
22MAKEFLAGS += --no-print-directory
23
Jan Beulich96678282006-01-30 10:05:09 +010024.PHONY: all \$(MAKECMDGOALS)
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026all:
27 \$(MAKE) -C \$(KERNELSRC) O=\$(KERNELOUTPUT)
28
Jan Beulich96678282006-01-30 10:05:09 +010029Makefile:;
30
31\$(filter-out all Makefile,\$(MAKECMDGOALS)) %/:
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 \$(MAKE) -C \$(KERNELSRC) O=\$(KERNELOUTPUT) \$@
Linus Torvalds1da177e2005-04-16 15:20:36 -070033EOF