aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKai Germaschewski <kai@tp1.ruhr-uni-bochum.de>2003-02-03 03:55:41 -0600
committerKai Germaschewski <kai@tp1.ruhr-uni-bochum.de>2003-02-03 03:55:41 -0600
commit03e7dcfb7aea11d2efe92c41cfd7163fa34572ff (patch)
treed7c13bea7295258fb47b144ccfb4ba6e099a6b60 /Makefile
parent44e2665116a3c32d8f89105ff6cc6937b40f858a (diff)
downloadhistory-03e7dcfb7aea11d2efe92c41cfd7163fa34572ff.tar.gz
kbuild: Assorted fixlets
o Build modules with CONFIG_MODVERSIONS when just saying "make" o Ignore generated *.ver.c files o Fix a typo (Sam Ravnborg) o Fix another typo (Paul Marinceu)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fdd199e40146ce..2423d88588b7ef 100644
--- a/Makefile
+++ b/Makefile
@@ -54,7 +54,7 @@ CROSS_COMPILE =
# That's our default target when none is given on the command line
-all: vmlinux
+all: vmlinux modules
# Decide whether to build built-in, modular, or both.
# Normally, just do built-in.
@@ -707,7 +707,7 @@ MRPROPER_DIRS += \
# clean - Delete all intermediate files
#
-clean-dirs += $(addprefix, _clean_,$(ALL_SUBDIRS) Documentation/DocBook scripts)
+clean-dirs += $(addprefix _clean_,$(ALL_SUBDIRS) Documentation/DocBook scripts)
.PHONY: $(clean-dirs) clean archclean mrproper archmrproper distclean
$(clean-dirs):
$(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)