Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #!/bin/sh |
Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 2 | # SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | # Generates a small Makefile used in the root of the output |
| 4 | # directory, to allow make to be started from there. |
| 5 | # The Makefile also allow for more convinient build of external modules |
| 6 | |
| 7 | # Usage |
| 8 | # $1 - Kernel src directory |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
Sam Ravnborg | 18c32da | 2007-12-09 08:55:13 +0100 | [diff] [blame] | 10 | # Only overwrite automatically generated Makefiles |
| 11 | # (so we do not overwrite kernel Makefile) |
Masahiro Yamada | 4fd6127 | 2018-09-18 17:45:53 +0900 | [diff] [blame] | 12 | if test -e Makefile && ! grep -q Automatically Makefile |
Sam Ravnborg | 18c32da | 2007-12-09 08:55:13 +0100 | [diff] [blame] | 13 | then |
| 14 | exit 0 |
| 15 | fi |
Sam Ravnborg | d230124 | 2008-11-21 23:00:12 +0100 | [diff] [blame] | 16 | if [ "${quiet}" != "silent_" ]; then |
Masahiro Yamada | 4fd6127 | 2018-09-18 17:45:53 +0900 | [diff] [blame] | 17 | echo " GEN Makefile" |
Sam Ravnborg | d230124 | 2008-11-21 23:00:12 +0100 | [diff] [blame] | 18 | fi |
Jan Beulich | fd5f0cd | 2006-05-02 12:33:20 +0200 | [diff] [blame] | 19 | |
Masahiro Yamada | 4fd6127 | 2018-09-18 17:45:53 +0900 | [diff] [blame] | 20 | cat << EOF > Makefile |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | # Automatically generated by $0: don't edit |
| 22 | |
Peter Foley | 0ff3577 | 2011-07-04 18:55:23 -0400 | [diff] [blame] | 23 | ifeq ("\$(origin V)", "command line") |
| 24 | VERBOSE := \$(V) |
| 25 | endif |
| 26 | ifneq (\$(VERBOSE),1) |
| 27 | Q := @ |
| 28 | endif |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | MAKEFLAGS += --no-print-directory |
| 31 | |
Masahiro Yamada | 9319f45 | 2014-04-09 15:51:35 +0900 | [diff] [blame] | 32 | .PHONY: __sub-make \$(MAKECMDGOALS) |
Jan Beulich | 9667828 | 2006-01-30 10:05:09 +0100 | [diff] [blame] | 33 | |
Masahiro Yamada | 9319f45 | 2014-04-09 15:51:35 +0900 | [diff] [blame] | 34 | __sub-make: |
Masahiro Yamada | 80d0dda | 2018-09-18 17:45:54 +0900 | [diff] [blame] | 35 | \$(Q)\$(MAKE) -C $1 O=\$(CURDIR) \$(MAKECMDGOALS) |
Milton Miller | 0b35786 | 2007-09-21 18:09:02 -0500 | [diff] [blame] | 36 | |
Masahiro Yamada | 9319f45 | 2014-04-09 15:51:35 +0900 | [diff] [blame] | 37 | \$(filter-out __sub-make, \$(MAKECMDGOALS)): __sub-make |
Jan Beulich | 3c955b4 | 2010-08-16 11:58:58 +0100 | [diff] [blame] | 38 | @: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | EOF |