libata-sff: kill unused ata_bus_reset()
[safe/jmp/linux-2.6] / Documentation / kbuild / modules.txt
index 1821c07..0767cf6 100644 (file)
@@ -253,7 +253,7 @@ following files:
 
                # Module specific targets
                genbin:
-                       echo "X" > 8123_bin_shipped
+                       echo "X" > 8123_bin.o_shipped
 
 
        In example 2, we are down to two fairly simple files and for simple
@@ -275,11 +275,11 @@ following files:
 
                KERNELDIR := /lib/modules/`uname -r`/build
                all::
-                       $(MAKE) -C $KERNELDIR M=`pwd` $@
+                       $(MAKE) -C $(KERNELDIR) M=`pwd` $@
 
                # Module specific targets
                genbin:
-                       echo "X" > 8123_bin_shipped
+                       echo "X" > 8123_bin.o_shipped
 
                endif