summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Christie <michaelc@cs.wisc.edu>2011-03-09 23:47:12 -0600
committerMike Christie <michaelc@cs.wisc.edu>2011-03-09 23:47:12 -0600
commit814f6a72cc0a6afbb5bcf54b3b8e5355f4e876e2 (patch)
tree726717ca89dcff71a8df465f2499d1e519494856 /Makefile
parente7e02472195240471d6f702f012f9d85bfacf124 (diff)
downloadopen-iscsi-814f6a72cc0a6afbb5bcf54b3b8e5355f4e876e2.tar.gz
iscsi tools/kernel: switch make defaults
With stable kernels and the iscsi kernel modules stablizing, there is less of a need to distribute kernel modules with the tarball. I also do not have time to update and maintain ports of the modules for so many kernels. So this patch changes the build default behavior. Running "make" use to build the kernel modules and tools. Now, it will only create the tools. "make install" used to install the tools and kernel modules and now it only installs the tools. I am not removing the kernel modules, but I will not be updating them anymore. They will remain for users of very old kernels. To build you now need to do and to install do
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3bd9e48..d62bc82 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ IFACEFILES = etc/iface.example
# using '$(MAKE)' instead of just 'make' allows make to run in parallel
# over multiple makefile.
-all: user kernel
+all: user
user: ;
cd utils/open-isns; ./configure --with-security=no; $(MAKE)
@@ -68,7 +68,7 @@ clean:
install_initd_suse install_initd_redhat install_initd_debian \
install_etc install_iface install_doc install_kernel install_iname
-install: install_kernel install_programs install_doc install_etc \
+install: install_programs install_doc install_etc \
install_initd install_iname install_iface
install_user: install_programs install_doc install_etc \