| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #!/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 |  | 
| Jan Beulich | fd5f0cd | 2006-05-02 12:33:20 +0200 | [diff] [blame] | 13 | test ! -r $2/Makefile -o -O $2/Makefile || exit 0 | 
| Sam Ravnborg | 18c32da | 2007-12-09 08:55:13 +0100 | [diff] [blame] | 14 | # Only overwrite automatically generated Makefiles | 
|  | 15 | # (so we do not overwrite kernel Makefile) | 
| Guillaume Chazarain | 971edcf | 2007-12-11 13:22:08 +0100 | [diff] [blame] | 16 | if test -e $2/Makefile && ! grep -q Automatically $2/Makefile | 
| Sam Ravnborg | 18c32da | 2007-12-09 08:55:13 +0100 | [diff] [blame] | 17 | then | 
|  | 18 | exit 0 | 
|  | 19 | fi | 
| Sam Ravnborg | d230124 | 2008-11-21 23:00:12 +0100 | [diff] [blame] | 20 | if [ "${quiet}" != "silent_" ]; then | 
|  | 21 | echo "  GEN     $2/Makefile" | 
|  | 22 | fi | 
| Jan Beulich | fd5f0cd | 2006-05-02 12:33:20 +0200 | [diff] [blame] | 23 |  | 
|  | 24 | cat << EOF > $2/Makefile | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | # Automatically generated by $0: don't edit | 
|  | 26 |  | 
|  | 27 | VERSION = $3 | 
|  | 28 | PATCHLEVEL = $4 | 
|  | 29 |  | 
| Jan Beulich | 1d3b3bf | 2008-01-11 09:09:00 +0000 | [diff] [blame] | 30 | lastword = \$(word \$(words \$(1)),\$(1)) | 
|  | 31 | makedir := \$(dir \$(call lastword,\$(MAKEFILE_LIST))) | 
|  | 32 |  | 
| Peter Foley | 0ff3577 | 2011-07-04 18:55:23 -0400 | [diff] [blame] | 33 | ifeq ("\$(origin V)", "command line") | 
|  | 34 | VERBOSE := \$(V) | 
|  | 35 | endif | 
|  | 36 | ifneq (\$(VERBOSE),1) | 
|  | 37 | Q := @ | 
|  | 38 | endif | 
|  | 39 |  | 
| Jan Beulich | 1d3b3bf | 2008-01-11 09:09:00 +0000 | [diff] [blame] | 40 | MAKEARGS := -C $1 | 
|  | 41 | MAKEARGS += O=\$(if \$(patsubst /%,,\$(makedir)),\$(CURDIR)/)\$(patsubst %/,%,\$(makedir)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 |  | 
|  | 43 | MAKEFLAGS += --no-print-directory | 
|  | 44 |  | 
| Jan Beulich | 9667828 | 2006-01-30 10:05:09 +0100 | [diff] [blame] | 45 | .PHONY: all \$(MAKECMDGOALS) | 
|  | 46 |  | 
| Milton Miller | 0b35786 | 2007-09-21 18:09:02 -0500 | [diff] [blame] | 47 | all	:= \$(filter-out all Makefile,\$(MAKECMDGOALS)) | 
|  | 48 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | all: | 
| Peter Foley | 0ff3577 | 2011-07-04 18:55:23 -0400 | [diff] [blame] | 50 | \$(Q)\$(MAKE) \$(MAKEARGS) \$(all) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 |  | 
| Jan Beulich | 9667828 | 2006-01-30 10:05:09 +0100 | [diff] [blame] | 52 | Makefile:; | 
|  | 53 |  | 
| Jan Beulich | 3c955b4 | 2010-08-16 11:58:58 +0100 | [diff] [blame] | 54 | \$(all): all | 
| Milton Miller | 0b35786 | 2007-09-21 18:09:02 -0500 | [diff] [blame] | 55 | @: | 
| Jan Beulich | 1d3b3bf | 2008-01-11 09:09:00 +0000 | [diff] [blame] | 56 |  | 
| Jan Beulich | 3c955b4 | 2010-08-16 11:58:58 +0100 | [diff] [blame] | 57 | %/: all | 
|  | 58 | @: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | EOF |