Skip to content
Snippets Groups Projects
mkmakefile 866 B
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
#!/bin/sh
Linus Torvalds's avatar
Linus Torvalds committed
# 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

# Only overwrite automatically generated Makefiles
# (so we do not overwrite kernel Makefile)
if test -e Makefile && ! grep -q Automatically Makefile
if [ "${quiet}" != "silent_" ]; then
Linus Torvalds's avatar
Linus Torvalds committed
# Automatically generated by $0: don't edit

ifeq ("\$(origin V)", "command line")
VERBOSE := \$(V)
endif
ifneq (\$(VERBOSE),1)
Q := @
endif

Linus Torvalds's avatar
Linus Torvalds committed
MAKEFLAGS += --no-print-directory

.PHONY: __sub-make \$(MAKECMDGOALS)
Jan Beulich's avatar
Jan Beulich committed

	\$(Q)\$(MAKE) -C $1 O=\$(CURDIR) \$(MAKECMDGOALS)
\$(filter-out __sub-make, \$(MAKECMDGOALS)): __sub-make
Jan Beulich's avatar
Jan Beulich committed
	@:
Linus Torvalds's avatar
Linus Torvalds committed
EOF