blob: a7beb54761728001fb8b9cfba75267d3858fa553 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- kernel/Makefile.orig 2006-01-13 00:32:58.000000000 +0100
+++ kernel/Makefile 2006-01-13 00:33:35.000000000 +0100
@@ -10,10 +10,10 @@
default:
- @make -C /lib/modules/`uname -r`/build M=`pwd` modules
+ $(MAKE) -C $(KERNEL_SRC) M=`pwd` modules
install:
- @make -C /lib/modules/`uname -r`/build M=`pwd` modules_install
+ $(MAKE) -C $(KERNEL_SRC) M=`pwd` modules_install
clean:
- @make -C /lib/modules/`uname -r`/build M=`pwd` clean
+ $(MAKE) -C $(KERNEL_SRC) M=`pwd` clean
|