Blame view
scripts/mkmakefile
1.07 KB
1da177e4c
|
1 2 3 4 5 6 7 8 9 10 |
#!/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 |
fd5f0cd6b
|
11 |
test ! -r $2/Makefile -o -O $2/Makefile || exit 0 |
18c32dac7
|
12 13 |
# Only overwrite automatically generated Makefiles # (so we do not overwrite kernel Makefile) |
971edcfc8
|
14 |
if test -e $2/Makefile && ! grep -q Automatically $2/Makefile |
18c32dac7
|
15 16 17 |
then exit 0 fi |
d2301249e
|
18 19 20 |
if [ "${quiet}" != "silent_" ]; then echo " GEN $2/Makefile" fi |
fd5f0cd6b
|
21 22 |
cat << EOF > $2/Makefile |
1da177e4c
|
23 24 25 26 |
# Automatically generated by $0: don't edit VERSION = $3 PATCHLEVEL = $4 |
1d3b3bfab
|
27 28 29 30 31 |
lastword = \$(word \$(words \$(1)),\$(1)) makedir := \$(dir \$(call lastword,\$(MAKEFILE_LIST))) MAKEARGS := -C $1 MAKEARGS += O=\$(if \$(patsubst /%,,\$(makedir)),\$(CURDIR)/)\$(patsubst %/,%,\$(makedir)) |
1da177e4c
|
32 33 |
MAKEFLAGS += --no-print-directory |
96678281b
|
34 |
.PHONY: all \$(MAKECMDGOALS) |
0b35786d7
|
35 |
all := \$(filter-out all Makefile,\$(MAKECMDGOALS)) |
1da177e4c
|
36 |
all: |
1d3b3bfab
|
37 |
\$(MAKE) \$(MAKEARGS) \$(all) |
1da177e4c
|
38 |
|
96678281b
|
39 |
Makefile:; |
1da177e4c
|
40 |
|
3c955b407
|
41 |
\$(all): all |
0b35786d7
|
42 |
@: |
1d3b3bfab
|
43 |
|
3c955b407
|
44 45 |
%/: all @: |
1da177e4c
|
46 |
EOF |