mirror of
https://github.com/sysprog21/lkmpg.git
synced 2025-01-16 00:52:44 +08:00
Replace make with $(MAKE) in Makefile
According to GNU Make Manual, Recursive make commands should always use the variable MAKE, not the explicit command name "make".
This commit is contained in:
parent
9c39011c21
commit
56c16b9ba0
12
lkmpg.tex
12
lkmpg.tex
|
@ -258,10 +258,10 @@ obj-m += hello-1.o
|
||||||
PWD := $(CURDIR)
|
PWD := $(CURDIR)
|
||||||
|
|
||||||
all:
|
all:
|
||||||
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
|
$(MAKE) -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
|
$(MAKE) -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
|
||||||
\end{code}
|
\end{code}
|
||||||
|
|
||||||
In \verb|Makefile|, \verb|$(CURDIR)| can set to the absolute pathname of the current working directory(after all \verb|-C| options are processed, if any).
|
In \verb|Makefile|, \verb|$(CURDIR)| can set to the absolute pathname of the current working directory(after all \verb|-C| options are processed, if any).
|
||||||
|
@ -461,10 +461,10 @@ obj-m += hello-2.o
|
||||||
PWD := $(CURDIR)
|
PWD := $(CURDIR)
|
||||||
|
|
||||||
all:
|
all:
|
||||||
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
|
$(MAKE) -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
|
$(MAKE) -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
|
||||||
\end{code}
|
\end{code}
|
||||||
|
|
||||||
Now have a look at \src{drivers/char/Makefile} for a real world example.
|
Now have a look at \src{drivers/char/Makefile} for a real world example.
|
||||||
|
@ -604,10 +604,10 @@ startstop-objs := start.o stop.o
|
||||||
PWD := $(CURDIR)
|
PWD := $(CURDIR)
|
||||||
|
|
||||||
all:
|
all:
|
||||||
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
|
$(MAKE) -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
|
$(MAKE) -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
|
||||||
\end{code}
|
\end{code}
|
||||||
|
|
||||||
This is the complete makefile for all the examples we have seen so far.
|
This is the complete makefile for all the examples we have seen so far.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user