aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAndrea Bastoni <bastoni@cs.unc.edu>2010-05-30 19:16:45 -0400
committerAndrea Bastoni <bastoni@cs.unc.edu>2010-05-30 19:16:45 -0400
commitada47b5fe13d89735805b566185f4885f5a3f750 (patch)
tree644b88f8a71896307d71438e9b3af49126ffb22b /Makefile
parent43e98717ad40a4ae64545b5ba047c7b86aa44f4f (diff)
parent3280f21d43ee541f97f8cda5792150d2dbec20d5 (diff)
Merge branch 'wip-2.6.34' into old-private-masterarchived-private-master
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile107
1 files changed, 35 insertions, 72 deletions
diff --git a/Makefile b/Makefile
index 2603066a012d..316557df634b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
1VERSION = 2 1VERSION = 2
2PATCHLEVEL = 6 2PATCHLEVEL = 6
3SUBLEVEL = 32 3SUBLEVEL = 34
4EXTRAVERSION =-litmus2010 4EXTRAVERSION =-litmus2010
5NAME = Man-Eating Seals of Antiquity 5NAME = Sheep on Meth
6 6
7# *DOCUMENTATION* 7# *DOCUMENTATION*
8# To see a list of typical targets execute "make help" 8# To see a list of typical targets execute "make help"
@@ -16,6 +16,12 @@ NAME = Man-Eating Seals of Antiquity
16# o print "Entering directory ..."; 16# o print "Entering directory ...";
17MAKEFLAGS += -rR --no-print-directory 17MAKEFLAGS += -rR --no-print-directory
18 18
19# Avoid funny character set dependencies
20unexport LC_ALL
21LC_COLLATE=C
22LC_NUMERIC=C
23export LC_COLLATE LC_NUMERIC
24
19# We are using a recursive build, so we need to do a little thinking 25# We are using a recursive build, so we need to do a little thinking
20# to get the ordering right. 26# to get the ordering right.
21# 27#
@@ -334,10 +340,9 @@ CFLAGS_GCOV = -fprofile-arcs -ftest-coverage
334 340
335# Use LINUXINCLUDE when you must reference the include/ directory. 341# Use LINUXINCLUDE when you must reference the include/ directory.
336# Needed to be compatible with the O= option 342# Needed to be compatible with the O= option
337LINUXINCLUDE := -Iinclude \ 343LINUXINCLUDE := -I$(srctree)/arch/$(hdr-arch)/include -Iinclude \
338 $(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include) \ 344 $(if $(KBUILD_SRC), -I$(srctree)/include) \
339 -I$(srctree)/arch/$(hdr-arch)/include \ 345 -include include/generated/autoconf.h
340 -include include/linux/autoconf.h
341 346
342KBUILD_CPPFLAGS := -D__KERNEL__ 347KBUILD_CPPFLAGS := -D__KERNEL__
343 348
@@ -379,6 +384,7 @@ export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn --exc
379PHONY += scripts_basic 384PHONY += scripts_basic
380scripts_basic: 385scripts_basic:
381 $(Q)$(MAKE) $(build)=scripts/basic 386 $(Q)$(MAKE) $(build)=scripts/basic
387 $(Q)rm -f .tmp_quiet_recordmcount
382 388
383# To avoid any implicit rule to kick in, define an empty command. 389# To avoid any implicit rule to kick in, define an empty command.
384scripts/basic/%: scripts_basic ; 390scripts/basic/%: scripts_basic ;
@@ -464,7 +470,7 @@ ifeq ($(KBUILD_EXTMOD),)
464# Carefully list dependencies so we do not try to build scripts twice 470# Carefully list dependencies so we do not try to build scripts twice
465# in parallel 471# in parallel
466PHONY += scripts 472PHONY += scripts
467scripts: scripts_basic include/config/auto.conf 473scripts: scripts_basic include/config/auto.conf include/config/tristate.conf
468 $(Q)$(MAKE) $(build)=$(@) 474 $(Q)$(MAKE) $(build)=$(@)
469 475
470# Objects we will link into vmlinux / subdirs we need to visit 476# Objects we will link into vmlinux / subdirs we need to visit
@@ -491,18 +497,18 @@ $(KCONFIG_CONFIG) include/config/auto.conf.cmd: ;
491# with it and forgot to run make oldconfig. 497# with it and forgot to run make oldconfig.
492# if auto.conf.cmd is missing then we are probably in a cleaned tree so 498# if auto.conf.cmd is missing then we are probably in a cleaned tree so
493# we execute the config step to be sure to catch updated Kconfig files 499# we execute the config step to be sure to catch updated Kconfig files
494include/config/auto.conf: $(KCONFIG_CONFIG) include/config/auto.conf.cmd 500include/config/%.conf: $(KCONFIG_CONFIG) include/config/auto.conf.cmd
495 $(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig 501 $(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig
496else 502else
497# external modules needs include/linux/autoconf.h and include/config/auto.conf 503# external modules needs include/generated/autoconf.h and include/config/auto.conf
498# but do not care if they are up-to-date. Use auto.conf to trigger the test 504# but do not care if they are up-to-date. Use auto.conf to trigger the test
499PHONY += include/config/auto.conf 505PHONY += include/config/auto.conf
500 506
501include/config/auto.conf: 507include/config/auto.conf:
502 $(Q)test -e include/linux/autoconf.h -a -e $@ || ( \ 508 $(Q)test -e include/generated/autoconf.h -a -e $@ || ( \
503 echo; \ 509 echo; \
504 echo " ERROR: Kernel configuration is invalid."; \ 510 echo " ERROR: Kernel configuration is invalid."; \
505 echo " include/linux/autoconf.h or $@ are missing."; \ 511 echo " include/generated/autoconf.h or $@ are missing.";\
506 echo " Run 'make oldconfig && make prepare' on kernel src to fix it."; \ 512 echo " Run 'make oldconfig && make prepare' on kernel src to fix it."; \
507 echo; \ 513 echo; \
508 /bin/false) 514 /bin/false)
@@ -876,6 +882,9 @@ $(sort $(vmlinux-init) $(vmlinux-main)) $(vmlinux-lds): $(vmlinux-dirs) ;
876PHONY += $(vmlinux-dirs) 882PHONY += $(vmlinux-dirs)
877$(vmlinux-dirs): prepare scripts 883$(vmlinux-dirs): prepare scripts
878 $(Q)$(MAKE) $(build)=$@ 884 $(Q)$(MAKE) $(build)=$@
885ifdef CONFIG_MODULES
886 $(Q)$(MAKE) $(modbuiltin)=$@
887endif
879 888
880# Build the kernel release string 889# Build the kernel release string
881# 890#
@@ -954,7 +963,6 @@ PHONY += prepare archprepare prepare0 prepare1 prepare2 prepare3
954# prepare3 is used to check if we are building in a separate output directory, 963# prepare3 is used to check if we are building in a separate output directory,
955# and if so do: 964# and if so do:
956# 1) Check that make has not been executed in the kernel src $(srctree) 965# 1) Check that make has not been executed in the kernel src $(srctree)
957# 2) Create the include2 directory, used for the second asm symlink
958prepare3: include/config/kernel.release 966prepare3: include/config/kernel.release
959ifneq ($(KBUILD_SRC),) 967ifneq ($(KBUILD_SRC),)
960 @$(kecho) ' Using $(srctree) as source for kernel' 968 @$(kecho) ' Using $(srctree) as source for kernel'
@@ -963,17 +971,13 @@ ifneq ($(KBUILD_SRC),)
963 echo " in the '$(srctree)' directory.";\ 971 echo " in the '$(srctree)' directory.";\
964 /bin/false; \ 972 /bin/false; \
965 fi; 973 fi;
966 $(Q)if [ ! -d include2 ]; then \
967 mkdir -p include2; \
968 ln -fsn $(srctree)/include/asm-$(SRCARCH) include2/asm; \
969 fi
970endif 974endif
971 975
972# prepare2 creates a makefile if using a separate output directory 976# prepare2 creates a makefile if using a separate output directory
973prepare2: prepare3 outputmakefile 977prepare2: prepare3 outputmakefile
974 978
975prepare1: prepare2 include/linux/version.h include/linux/utsrelease.h \ 979prepare1: prepare2 include/linux/version.h include/generated/utsrelease.h \
976 include/asm include/config/auto.conf 980 include/config/auto.conf
977 $(cmd_crmodverdir) 981 $(cmd_crmodverdir)
978 982
979archprepare: prepare1 scripts_basic 983archprepare: prepare1 scripts_basic
@@ -985,42 +989,6 @@ prepare0: archprepare FORCE
985# All the preparing.. 989# All the preparing..
986prepare: prepare0 990prepare: prepare0
987 991
988# The asm symlink changes when $(ARCH) changes.
989# Detect this and ask user to run make mrproper
990# If asm is a stale symlink (point to dir that does not exist) remove it
991define check-symlink
992 set -e; \
993 if [ -L include/asm ]; then \
994 asmlink=`readlink include/asm | cut -d '-' -f 2`; \
995 if [ "$$asmlink" != "$(SRCARCH)" ]; then \
996 echo "ERROR: the symlink $@ points to asm-$$asmlink but asm-$(SRCARCH) was expected"; \
997 echo " set ARCH or save .config and run 'make mrproper' to fix it"; \
998 exit 1; \
999 fi; \
1000 test -e $$asmlink || rm include/asm; \
1001 elif [ -d include/asm ]; then \
1002 echo "ERROR: $@ is a directory but a symlink was expected";\
1003 exit 1; \
1004 fi
1005endef
1006
1007# We create the target directory of the symlink if it does
1008# not exist so the test in check-symlink works and we have a
1009# directory for generated filesas used by some architectures.
1010define create-symlink
1011 if [ ! -L include/asm ]; then \
1012 $(kecho) ' SYMLINK $@ -> include/asm-$(SRCARCH)'; \
1013 if [ ! -d include/asm-$(SRCARCH) ]; then \
1014 mkdir -p include/asm-$(SRCARCH); \
1015 fi; \
1016 ln -fsn asm-$(SRCARCH) $@; \
1017 fi
1018endef
1019
1020include/asm: FORCE
1021 $(Q)$(check-symlink)
1022 $(Q)$(create-symlink)
1023
1024# Generate some files 992# Generate some files
1025# --------------------------------------------------------------------------- 993# ---------------------------------------------------------------------------
1026 994
@@ -1045,7 +1013,7 @@ endef
1045include/linux/version.h: $(srctree)/Makefile FORCE 1013include/linux/version.h: $(srctree)/Makefile FORCE
1046 $(call filechk,version.h) 1014 $(call filechk,version.h)
1047 1015
1048include/linux/utsrelease.h: include/config/kernel.release FORCE 1016include/generated/utsrelease.h: include/config/kernel.release FORCE
1049 $(call filechk,utsrelease.h) 1017 $(call filechk,utsrelease.h)
1050 1018
1051PHONY += headerdep 1019PHONY += headerdep
@@ -1075,11 +1043,6 @@ firmware_install: FORCE
1075export INSTALL_HDR_PATH = $(objtree)/usr 1043export INSTALL_HDR_PATH = $(objtree)/usr
1076 1044
1077hdr-inst := -rR -f $(srctree)/scripts/Makefile.headersinst obj 1045hdr-inst := -rR -f $(srctree)/scripts/Makefile.headersinst obj
1078# Find out where the Kbuild file is located to support
1079# arch/$(ARCH)/include/asm
1080hdr-dir = $(strip \
1081 $(if $(wildcard $(srctree)/arch/$(hdr-arch)/include/asm/Kbuild), \
1082 arch/$(hdr-arch)/include/asm, include/asm-$(hdr-arch)))
1083 1046
1084# If we do an all arch process set dst to asm-$(hdr-arch) 1047# If we do an all arch process set dst to asm-$(hdr-arch)
1085hdr-dst = $(if $(KBUILD_HEADERS), dst=include/asm-$(hdr-arch), dst=include/asm) 1048hdr-dst = $(if $(KBUILD_HEADERS), dst=include/asm-$(hdr-arch), dst=include/asm)
@@ -1094,10 +1057,10 @@ headers_install_all:
1094 1057
1095PHONY += headers_install 1058PHONY += headers_install
1096headers_install: __headers 1059headers_install: __headers
1097 $(if $(wildcard $(srctree)/$(hdr-dir)/Kbuild),, \ 1060 $(if $(wildcard $(srctree)/arch/$(hdr-arch)/include/asm/Kbuild),, \
1098 $(error Headers not exportable for the $(SRCARCH) architecture)) 1061 $(error Headers not exportable for the $(SRCARCH) architecture))
1099 $(Q)$(MAKE) $(hdr-inst)=include 1062 $(Q)$(MAKE) $(hdr-inst)=include
1100 $(Q)$(MAKE) $(hdr-inst)=$(hdr-dir) $(hdr-dst) 1063 $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/asm $(hdr-dst)
1101 1064
1102PHONY += headers_check_all 1065PHONY += headers_check_all
1103headers_check_all: headers_install_all 1066headers_check_all: headers_install_all
@@ -1106,7 +1069,7 @@ headers_check_all: headers_install_all
1106PHONY += headers_check 1069PHONY += headers_check
1107headers_check: headers_install 1070headers_check: headers_install
1108 $(Q)$(MAKE) $(hdr-inst)=include HDRCHECK=1 1071 $(Q)$(MAKE) $(hdr-inst)=include HDRCHECK=1
1109 $(Q)$(MAKE) $(hdr-inst)=$(hdr-dir) $(hdr-dst) HDRCHECK=1 1072 $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/asm $(hdr-dst) HDRCHECK=1
1110 1073
1111# --------------------------------------------------------------------------- 1074# ---------------------------------------------------------------------------
1112# Modules 1075# Modules
@@ -1126,6 +1089,7 @@ all: modules
1126PHONY += modules 1089PHONY += modules
1127modules: $(vmlinux-dirs) $(if $(KBUILD_BUILTIN),vmlinux) 1090modules: $(vmlinux-dirs) $(if $(KBUILD_BUILTIN),vmlinux)
1128 $(Q)$(AWK) '!x[$$0]++' $(vmlinux-dirs:%=$(objtree)/%/modules.order) > $(objtree)/modules.order 1091 $(Q)$(AWK) '!x[$$0]++' $(vmlinux-dirs:%=$(objtree)/%/modules.order) > $(objtree)/modules.order
1092 $(Q)$(AWK) '!x[$$0]++' $(vmlinux-dirs:%=$(objtree)/%/modules.builtin) > $(objtree)/modules.builtin
1129 @$(kecho) ' Building modules, stage 2.'; 1093 @$(kecho) ' Building modules, stage 2.';
1130 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost 1094 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
1131 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_modbuild 1095 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_modbuild
@@ -1155,6 +1119,7 @@ _modinst_:
1155 ln -s $(objtree) $(MODLIB)/build ; \ 1119 ln -s $(objtree) $(MODLIB)/build ; \
1156 fi 1120 fi
1157 @cp -f $(objtree)/modules.order $(MODLIB)/ 1121 @cp -f $(objtree)/modules.order $(MODLIB)/
1122 @cp -f $(objtree)/modules.builtin $(MODLIB)/
1158 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst 1123 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst
1159 1124
1160# This depmod is only for convenience to give the initial 1125# This depmod is only for convenience to give the initial
@@ -1193,12 +1158,10 @@ CLEAN_FILES += vmlinux System.map \
1193 .tmp_kallsyms* .tmp_version .tmp_vmlinux* .tmp_System.map 1158 .tmp_kallsyms* .tmp_version .tmp_vmlinux* .tmp_System.map
1194 1159
1195# Directories & files removed with 'make mrproper' 1160# Directories & files removed with 'make mrproper'
1196MRPROPER_DIRS += include/config include2 usr/include include/generated 1161MRPROPER_DIRS += include/config usr/include include/generated
1197MRPROPER_FILES += .config .config.old include/asm .version .old_version \ 1162MRPROPER_FILES += .config .config.old .version .old_version \
1198 include/linux/autoconf.h include/linux/version.h \ 1163 include/linux/version.h \
1199 include/linux/utsrelease.h \ 1164 Module.symvers tags TAGS cscope*
1200 include/linux/bounds.h include/asm*/asm-offsets.h \
1201 Module.symvers Module.markers tags TAGS cscope*
1202 1165
1203# clean - Delete most, but leave enough to build external modules 1166# clean - Delete most, but leave enough to build external modules
1204# 1167#
@@ -1217,7 +1180,7 @@ clean: archclean $(clean-dirs)
1217 \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \ 1180 \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
1218 -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \ 1181 -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \
1219 -o -name '*.symtypes' -o -name 'modules.order' \ 1182 -o -name '*.symtypes' -o -name 'modules.order' \
1220 -o -name 'Module.markers' -o -name '.tmp_*.o.*' \ 1183 -o -name modules.builtin -o -name '.tmp_*.o.*' \
1221 -o -name '*.gcno' \) -type f -print | xargs rm -f 1184 -o -name '*.gcno' \) -type f -print | xargs rm -f
1222 1185
1223# mrproper - Delete all generated files, including .config 1186# mrproper - Delete all generated files, including .config
@@ -1415,8 +1378,8 @@ $(clean-dirs):
1415 1378
1416clean: rm-dirs := $(MODVERDIR) 1379clean: rm-dirs := $(MODVERDIR)
1417clean: rm-files := $(KBUILD_EXTMOD)/Module.symvers \ 1380clean: rm-files := $(KBUILD_EXTMOD)/Module.symvers \
1418 $(KBUILD_EXTMOD)/Module.markers \ 1381 $(KBUILD_EXTMOD)/modules.order \
1419 $(KBUILD_EXTMOD)/modules.order 1382 $(KBUILD_EXTMOD)/modules.builtin
1420clean: $(clean-dirs) 1383clean: $(clean-dirs)
1421 $(call cmd,rmdirs) 1384 $(call cmd,rmdirs)
1422 $(call cmd,rmfiles) 1385 $(call cmd,rmfiles)