Separate out the build of "kernel:" and "user:" targets.

[Mike please revisit the @echo output if we need anything added]

Signed-off-by: Boaz Harrosh <bharr...@panasas.com>
---
 Makefile |   25 ++++++++++++++-----------
 1 files changed, 14 insertions(+), 11 deletions(-)

diff --git a/Makefile b/Makefile
index 9578697..c5ad89c 100644
--- a/Makefile
+++ b/Makefile
@@ -24,27 +24,30 @@ IFACEFILES = etc/iface.example
 # using '$(MAKE)' instead of just 'make' allows make to run in parallel
 # over multiple makefile.
 
-all:
+all: user kernel
+
+user: ;
        $(MAKE) -C utils/fwparam_ibft
        $(MAKE) -C usr
-       $(MAKE) -C kernel
        $(MAKE) -C utils
        @echo
        @echo "Compilation complete                 Output file"
        @echo "-----------------------------------  ----------------"
-       @echo "Built iSCSI Open Interface module:   
kernel/scsi_transport_iscsi.ko"
-       @echo "Built iSCSI library module:          kernel/libiscsi.ko"
-       @echo "Built iSCSI over TCP library module: kernel/iscsi_tcp.ko"
-       @echo "Built iSCSI over TCP kernel module:  kernel/iscsi_tcp.ko"
        @echo "Built iSCSI daemon:                  usr/iscsid"
        @echo "Built management application:        usr/iscsiadm"
        @echo
-       @echo Read README file for detailed information.
+       @echo "Read README file for detailed information."
 
-user:
-       $(MAKE) -C utils/fwparam_ibft
-       $(MAKE) -C utils
-       $(MAKE) -C usr
+kernel: force
+       $(MAKE) -C kernel
+       @echo "Kernel Compilation complete          Output file"
+       @echo "-----------------------------------  ----------------"
+       @echo "Built iSCSI Open Interface module:   
kernel/scsi_transport_iscsi.ko"
+       @echo "Built iSCSI library module:          kernel/libiscsi.ko"
+       @echo "Built iSCSI over TCP library module: kernel/libiscsi_tcp.ko"
+       @echo "Built iSCSI over TCP kernel module:  kernel/iscsi_tcp.ko"
+
+force: ;
 
 clean:
        $(MAKE) -C utils/fwparam_ibft clean
-- 
1.6.0.1



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"open-iscsi" group.
To post to this group, send email to open-iscsi@googlegroups.com
To unsubscribe from this group, send email to 
open-iscsi+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/open-iscsi
-~----------~----~----~----~------~----~------~--~---

Reply via email to