Makefile
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:18k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. VERSION = 2
  2. PATCHLEVEL = 4
  3. SUBLEVEL = 20
  4. EXTRAVERSION =
  5. KERNELRELEASE=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
  6. ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ -e s/arm.*/arm/ -e s/sa110/arm/)
  7. KERNELPATH=kernel-$(shell echo $(KERNELRELEASE) | sed -e "s/-//g")
  8. CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; 
  9.   else if [ -x /bin/bash ]; then echo /bin/bash; 
  10.   else echo sh; fi ; fi)
  11. TOPDIR := $(shell /bin/pwd)
  12. HPATH    = $(TOPDIR)/include
  13. FINDHPATH = $(HPATH)/asm $(HPATH)/linux $(HPATH)/scsi $(HPATH)/net $(HPATH)/math-emu
  14. HOSTCC   = gcc
  15. HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
  16. CROSS_COMPILE  =
  17. #
  18. # Include the make variables (CC, etc...)
  19. #
  20. AS = $(CROSS_COMPILE)as
  21. LD = $(CROSS_COMPILE)ld
  22. CC = $(CROSS_COMPILE)gcc
  23. CPP = $(CC) -E
  24. AR = $(CROSS_COMPILE)ar
  25. NM = $(CROSS_COMPILE)nm
  26. STRIP = $(CROSS_COMPILE)strip
  27. OBJCOPY = $(CROSS_COMPILE)objcopy
  28. OBJDUMP = $(CROSS_COMPILE)objdump
  29. MAKEFILES = $(TOPDIR)/.config
  30. GENKSYMS = /sbin/genksyms
  31. DEPMOD = /sbin/depmod
  32. MODFLAGS = -DMODULE
  33. CFLAGS_KERNEL =
  34. PERL = perl
  35. export VERSION PATCHLEVEL SUBLEVEL EXTRAVERSION KERNELRELEASE ARCH 
  36. CONFIG_SHELL TOPDIR HPATH HOSTCC HOSTCFLAGS CROSS_COMPILE AS LD CC 
  37. CPP AR NM STRIP OBJCOPY OBJDUMP MAKE MAKEFILES GENKSYMS MODFLAGS PERL
  38. all: do-it-all
  39. #
  40. # Make "config" the default target if there is no configuration file or
  41. # "depend" the target if there is no top-level dependency information.
  42. #
  43. ifeq (.config,$(wildcard .config))
  44. include .config
  45. ifeq (.depend,$(wildcard .depend))
  46. include .depend
  47. do-it-all: Version vmlinux
  48. else
  49. CONFIGURATION = depend
  50. do-it-all: depend
  51. endif
  52. else
  53. CONFIGURATION = config
  54. do-it-all: config
  55. endif
  56. #
  57. # INSTALL_PATH specifies where to place the updated kernel and system map
  58. # images.  Uncomment if you want to place them anywhere other than root.
  59. #
  60. #export INSTALL_PATH=/boot
  61. #
  62. # INSTALL_MOD_PATH specifies a prefix to MODLIB for module directory
  63. # relocations required by build roots.  This is not defined in the
  64. # makefile but the arguement can be passed to make if needed.
  65. #
  66. MODLIB := $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE)
  67. export MODLIB
  68. #
  69. # standard CFLAGS
  70. #
  71. CPPFLAGS := -D__KERNEL__ -I$(HPATH)
  72. CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes -Wno-trigraphs -O2 
  73.   -fno-strict-aliasing -fno-common
  74. ifndef CONFIG_FRAME_POINTER
  75. CFLAGS += -fomit-frame-pointer
  76. endif
  77. AFLAGS := -D__ASSEMBLY__ $(CPPFLAGS)
  78. #
  79. # ROOT_DEV specifies the default root-device when making the image.
  80. # This can be either FLOPPY, CURRENT, /dev/xxxx or empty, in which case
  81. # the default of FLOPPY is used by 'build'.
  82. # This is i386 specific.
  83. #
  84. export ROOT_DEV = CURRENT
  85. #
  86. # If you want to preset the SVGA mode, uncomment the next line and
  87. # set SVGA_MODE to whatever number you want.
  88. # Set it to -DSVGA_MODE=NORMAL_VGA if you just want the EGA/VGA mode.
  89. # The number is the same as you would ordinarily press at bootup.
  90. # This is i386 specific.
  91. #
  92. export SVGA_MODE = -DSVGA_MODE=NORMAL_VGA
  93. #
  94. # If you want the RAM disk device, define this to be the size in blocks.
  95. # This is i386 specific.
  96. #
  97. #export RAMDISK = -DRAMDISK=512
  98. CORE_FILES =kernel/kernel.o mm/mm.o fs/fs.o ipc/ipc.o
  99. NETWORKS =net/network.o
  100. LIBS =$(TOPDIR)/lib/lib.a
  101. SUBDIRS =kernel drivers mm fs net ipc lib
  102. DRIVERS-n :=
  103. DRIVERS-y :=
  104. DRIVERS-m :=
  105. DRIVERS-  :=
  106. DRIVERS-$(CONFIG_ACPI) += drivers/acpi/acpi.o
  107. DRIVERS-$(CONFIG_PARPORT) += drivers/parport/driver.o
  108. DRIVERS-y += drivers/char/char.o 
  109. drivers/block/block.o 
  110. drivers/misc/misc.o 
  111. drivers/net/net.o 
  112. drivers/media/media.o
  113. DRIVERS-$(CONFIG_AGP) += drivers/char/agp/agp.o
  114. DRIVERS-$(CONFIG_DRM_NEW) += drivers/char/drm/drm.o
  115. DRIVERS-$(CONFIG_DRM_OLD) += drivers/char/drm-4.0/drm.o
  116. DRIVERS-$(CONFIG_NUBUS) += drivers/nubus/nubus.a
  117. DRIVERS-$(CONFIG_NET_FC) += drivers/net/fc/fc.o
  118. DRIVERS-$(CONFIG_DEV_APPLETALK) += drivers/net/appletalk/appletalk.o
  119. DRIVERS-$(CONFIG_TR) += drivers/net/tokenring/tr.o
  120. DRIVERS-$(CONFIG_WAN) += drivers/net/wan/wan.o
  121. DRIVERS-$(CONFIG_ARCNET) += drivers/net/arcnet/arcnetdrv.o
  122. DRIVERS-$(CONFIG_ATM) += drivers/atm/atm.o
  123. DRIVERS-$(CONFIG_IDE) += drivers/ide/idedriver.o
  124. DRIVERS-$(CONFIG_FC4) += drivers/fc4/fc4.a
  125. DRIVERS-$(CONFIG_SCSI) += drivers/scsi/scsidrv.o
  126. DRIVERS-$(CONFIG_FUSION_BOOT) += drivers/message/fusion/fusion.o
  127. DRIVERS-$(CONFIG_IEEE1394) += drivers/ieee1394/ieee1394drv.o
  128. ifneq ($(CONFIG_CD_NO_IDESCSI)$(CONFIG_BLK_DEV_IDECD)$(CONFIG_BLK_DEV_SR)$(CONFIG_PARIDE_PCD),)
  129. DRIVERS-y += drivers/cdrom/driver.o
  130. endif
  131. DRIVERS-$(CONFIG_SOUND) += drivers/sound/sounddrivers.o
  132. DRIVERS-$(CONFIG_PCI) += drivers/pci/driver.o
  133. DRIVERS-$(CONFIG_MTD) += drivers/mtd/mtdlink.o
  134. DRIVERS-$(CONFIG_PCMCIA) += drivers/pcmcia/pcmcia.o
  135. DRIVERS-$(CONFIG_NET_PCMCIA) += drivers/net/pcmcia/pcmcia_net.o
  136. DRIVERS-$(CONFIG_NET_WIRELESS) += drivers/net/wireless/wireless_net.o
  137. DRIVERS-$(CONFIG_PCMCIA_CHRDEV) += drivers/char/pcmcia/pcmcia_char.o
  138. DRIVERS-$(CONFIG_DIO) += drivers/dio/dio.a
  139. DRIVERS-$(CONFIG_SBUS) += drivers/sbus/sbus_all.o
  140. DRIVERS-$(CONFIG_ZORRO) += drivers/zorro/driver.o
  141. DRIVERS-$(CONFIG_FC4) += drivers/fc4/fc4.a
  142. DRIVERS-$(CONFIG_PPC32) += drivers/macintosh/macintosh.o
  143. DRIVERS-$(CONFIG_MAC) += drivers/macintosh/macintosh.o
  144. DRIVERS-$(CONFIG_ISAPNP) += drivers/pnp/pnp.o
  145. DRIVERS-$(CONFIG_SGI_IP22) += drivers/sgi/sgi.a
  146. DRIVERS-$(CONFIG_VT) += drivers/video/video.o
  147. DRIVERS-$(CONFIG_PARIDE) += drivers/block/paride/paride.a
  148. DRIVERS-$(CONFIG_HAMRADIO) += drivers/net/hamradio/hamradio.o
  149. DRIVERS-$(CONFIG_TC) += drivers/tc/tc.a
  150. DRIVERS-$(CONFIG_USB) += drivers/usb/usbdrv.o
  151. DRIVERS-$(CONFIG_INPUT) += drivers/input/inputdrv.o
  152. DRIVERS-$(CONFIG_HIL) += drivers/hil/hil.o
  153. DRIVERS-$(CONFIG_I2O) += drivers/message/i2o/i2o.o
  154. DRIVERS-$(CONFIG_IRDA) += drivers/net/irda/irda.o
  155. DRIVERS-$(CONFIG_I2C) += drivers/i2c/i2c.o
  156. DRIVERS-$(CONFIG_PHONE) += drivers/telephony/telephony.o
  157. DRIVERS-$(CONFIG_MD) += drivers/md/mddev.o
  158. DRIVERS-$(CONFIG_GSC) += drivers/gsc/gscbus.o
  159. DRIVERS-$(CONFIG_BLUEZ) += drivers/bluetooth/bluetooth.o
  160. DRIVERS-$(CONFIG_HOTPLUG_PCI) += drivers/hotplug/vmlinux-obj.o
  161. DRIVERS-$(CONFIG_ISDN_BOOL) += drivers/isdn/vmlinux-obj.o
  162. DRIVERS := $(DRIVERS-y)
  163. # files removed with 'make clean'
  164. CLEAN_FILES = 
  165. kernel/ksyms.lst include/linux/compile.h 
  166. vmlinux System.map 
  167. .tmp* 
  168. drivers/char/consolemap_deftbl.c drivers/video/promcon_tbl.c 
  169. drivers/char/conmakehash 
  170. drivers/char/drm/*-mod.c 
  171. drivers/pci/devlist.h drivers/pci/classlist.h drivers/pci/gen-devlist 
  172. drivers/zorro/devlist.h drivers/zorro/gen-devlist 
  173. drivers/sound/bin2hex drivers/sound/hex2hex 
  174. drivers/atm/fore200e_mkfirm drivers/atm/{pca,sba}*{.bin,.bin1,.bin2} 
  175. drivers/scsi/aic7xxx/aicasm/aicasm 
  176. drivers/scsi/aic7xxx/aicasm/aicasm_gram.c 
  177. drivers/scsi/aic7xxx/aicasm/aicasm_gram.h 
  178. drivers/scsi/aic7xxx/aicasm/aicasm_macro_gram.c 
  179. drivers/scsi/aic7xxx/aicasm/aicasm_macro_gram.h 
  180. drivers/scsi/aic7xxx/aicasm/aicasm_macro_scan.c 
  181. drivers/scsi/aic7xxx/aicasm/aicasm_scan.c 
  182. drivers/scsi/aic7xxx/aicasm/aicdb.h 
  183. drivers/scsi/aic7xxx/aicasm/y.tab.h 
  184. drivers/scsi/53c700_d.h 
  185. net/khttpd/make_times_h 
  186. net/khttpd/times.h 
  187. submenu*
  188. # directories removed with 'make clean'
  189. CLEAN_DIRS = 
  190. modules
  191. # files removed with 'make mrproper'
  192. MRPROPER_FILES = 
  193. include/linux/autoconf.h include/linux/version.h 
  194. drivers/net/hamradio/soundmodem/sm_tbl_{afsk1200,afsk2666,fsk9600}.h 
  195. drivers/net/hamradio/soundmodem/sm_tbl_{hapn4800,psk4800}.h 
  196. drivers/net/hamradio/soundmodem/sm_tbl_{afsk2400_7,afsk2400_8}.h 
  197. drivers/net/hamradio/soundmodem/gentbl 
  198. drivers/sound/*_boot.h drivers/sound/.*.boot 
  199. drivers/sound/msndinit.c 
  200. drivers/sound/msndperm.c 
  201. drivers/sound/pndsperm.c 
  202. drivers/sound/pndspini.c 
  203. drivers/atm/fore200e_*_fw.c drivers/atm/.fore200e_*.fw 
  204. .version .config* config.in config.old 
  205. scripts/tkparse scripts/kconfig.tk scripts/kconfig.tmp 
  206. scripts/lxdialog/*.o scripts/lxdialog/lxdialog 
  207. .menuconfig.log 
  208. include/asm 
  209. .hdepend scripts/mkdep scripts/split-include scripts/docproc 
  210. $(TOPDIR)/include/linux/modversions.h 
  211. kernel.spec
  212. # directories removed with 'make mrproper'
  213. MRPROPER_DIRS = 
  214. include/config 
  215. $(TOPDIR)/include/linux/modules
  216. include arch/$(ARCH)/Makefile
  217. # Extra cflags for kbuild 2.4.  The default is to forbid includes by kernel code
  218. # from user space headers.  Some UML code requires user space headers, in the
  219. # UML Makefiles add 'kbuild_2_4_nostdinc :=' before include Rules.make.  No
  220. # other kernel code should include user space headers, if you need
  221. # 'kbuild_2_4_nostdinc :=' or -I/usr/include for kernel code and you are not UML
  222. # then your code is broken!  KAO.
  223. kbuild_2_4_nostdinc := -nostdinc -iwithprefix include
  224. export kbuild_2_4_nostdinc
  225. export CPPFLAGS CFLAGS CFLAGS_KERNEL AFLAGS AFLAGS_KERNEL
  226. export NETWORKS DRIVERS LIBS HEAD LDFLAGS LINKFLAGS MAKEBOOT ASFLAGS
  227. .S.s:
  228. $(CPP) $(AFLAGS) $(AFLAGS_KERNEL) -traditional -o $*.s $<
  229. .S.o:
  230. $(CC) $(AFLAGS) $(AFLAGS_KERNEL) -traditional -c -o $*.o $<
  231. Version: dummy
  232. @rm -f include/linux/compile.h
  233. boot: vmlinux
  234. @$(MAKE) CFLAGS="$(CFLAGS) $(CFLAGS_KERNEL)" -C arch/$(ARCH)/boot
  235. vmlinux: include/linux/version.h $(CONFIGURATION) init/main.o init/version.o init/do_mounts.o linuxsubdirs
  236. $(LD) $(LINKFLAGS) $(HEAD) init/main.o init/version.o init/do_mounts.o 
  237. --start-group 
  238. $(CORE_FILES) 
  239. $(DRIVERS) 
  240. $(NETWORKS) 
  241. $(LIBS) 
  242. --end-group 
  243. -o vmlinux
  244. $(NM) vmlinux | grep -v '(compiled)|(.o$$)|( [aUw] )|(..ng$$)|(LASH[RL]DI)' | sort > System.map
  245. symlinks:
  246. rm -f include/asm
  247. ( cd include ; ln -sf asm-$(ARCH) asm)
  248. @if [ ! -d include/linux/modules ]; then 
  249. mkdir include/linux/modules; 
  250. fi
  251. oldconfig: symlinks
  252. $(CONFIG_SHELL) scripts/Configure -d arch/$(ARCH)/config.in
  253. xconfig: symlinks
  254. $(MAKE) -C scripts kconfig.tk
  255. wish -f scripts/kconfig.tk
  256. menuconfig: include/linux/version.h symlinks
  257. $(MAKE) -C scripts/lxdialog all
  258. $(CONFIG_SHELL) scripts/Menuconfig arch/$(ARCH)/config.in
  259. config: symlinks
  260. $(CONFIG_SHELL) scripts/Configure arch/$(ARCH)/config.in
  261. include/config/MARKER: scripts/split-include include/linux/autoconf.h
  262. scripts/split-include include/linux/autoconf.h include/config
  263. @ touch include/config/MARKER
  264. linuxsubdirs: $(patsubst %, _dir_%, $(SUBDIRS))
  265. $(patsubst %, _dir_%, $(SUBDIRS)) : dummy include/linux/version.h include/config/MARKER
  266. $(MAKE) CFLAGS="$(CFLAGS) $(CFLAGS_KERNEL)" -C $(patsubst _dir_%, %, $@)
  267. $(TOPDIR)/include/linux/version.h: include/linux/version.h
  268. $(TOPDIR)/include/linux/compile.h: include/linux/compile.h
  269. newversion:
  270. . scripts/mkversion > .tmpversion
  271. @mv -f .tmpversion .version
  272. uts_len := 64
  273. uts_truncate := sed -e 's/(.{1,$(uts_len)}).*/1/'
  274. include/linux/compile.h: $(CONFIGURATION) include/linux/version.h newversion
  275. @echo -n #`cat .version` > .ver1
  276. @if [ -n "$(CONFIG_SMP)" ] ; then echo -n " SMP" >> .ver1; fi
  277. @if [ -f .name ]; then  echo -n -`cat .name` >> .ver1; fi
  278. @LANG=C echo ' '`date` >> .ver1
  279. @echo #define UTS_VERSION "`cat .ver1 | $(uts_truncate)`" > .ver
  280. @LANG=C echo #define LINUX_COMPILE_TIME "`date +%T`" >> .ver
  281. @echo #define LINUX_COMPILE_BY "`whoami`" >> .ver
  282. @echo #define LINUX_COMPILE_HOST "`hostname | $(uts_truncate)`" >> .ver
  283. @([ -x /bin/dnsdomainname ] && /bin/dnsdomainname > .ver1) || 
  284.  ([ -x /bin/domainname ] && /bin/domainname > .ver1) || 
  285.  echo > .ver1
  286. @echo #define LINUX_COMPILE_DOMAIN "`cat .ver1 | $(uts_truncate)`" >> .ver
  287. @echo #define LINUX_COMPILER "`$(CC) $(CFLAGS) -v 2>&1 | tail -1`" >> .ver
  288. @mv -f .ver $@
  289. @rm -f .ver1
  290. include/linux/version.h: ./Makefile
  291. @expr length "$(KERNELRELEASE)" <= $(uts_len) > /dev/null || 
  292.   (echo KERNELRELEASE "$(KERNELRELEASE)" exceeds $(uts_len) characters >&2; false)
  293. @echo #define UTS_RELEASE "$(KERNELRELEASE)" > .ver
  294. @echo #define LINUX_VERSION_CODE `expr $(VERSION) \* 65536 + $(PATCHLEVEL) \* 256 + $(SUBLEVEL)` >> .ver
  295. @echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))' >>.ver
  296. @mv -f .ver $@
  297. comma := ,
  298. init/version.o: init/version.c include/linux/compile.h include/config/MARKER
  299. $(CC) $(CFLAGS) $(CFLAGS_KERNEL) -DUTS_MACHINE='"$(ARCH)"' -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o init/version.o init/version.c
  300. init/main.o: init/main.c include/config/MARKER
  301. $(CC) $(CFLAGS) $(CFLAGS_KERNEL) $(PROFILING) -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o $@ $<
  302. init/do_mounts.o: init/do_mounts.c include/config/MARKER
  303. $(CC) $(CFLAGS) $(CFLAGS_KERNEL) $(PROFILING) -DKBUILD_BASENAME=$(subst $(comma),_,$(subst -,_,$(*F))) -c -o $@ $<
  304. fs lib mm ipc kernel drivers net: dummy
  305. $(MAKE) CFLAGS="$(CFLAGS) $(CFLAGS_KERNEL)" $(subst $@, _dir_$@, $@)
  306. TAGS: dummy
  307. { find include/asm-${ARCH} -name '*.h' -print ; 
  308. find include -type d ( -name "asm-*" -o -name config ) -prune -o -name '*.h' -print ; 
  309. find $(SUBDIRS) init arch/${ARCH} -name '*.[chS]' ; } | grep -v SCCS | grep -v '.svn' | etags -
  310. # Exuberant ctags works better with -I
  311. tags: dummy
  312. CTAGSF=`ctags --version | grep -i exuberant >/dev/null && echo "-I __initdata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_NOVERS"`; 
  313. ctags $$CTAGSF `find include/asm-$(ARCH) -name '*.h'` && 
  314. find include -type d ( -name "asm-*" -o -name config ) -prune -o -name '*.h' -print | xargs ctags $$CTAGSF -a && 
  315. find $(SUBDIRS) init -name '*.[ch]' | xargs ctags $$CTAGSF -a
  316. ifdef CONFIG_MODULES
  317. ifdef CONFIG_MODVERSIONS
  318. MODFLAGS += -DMODVERSIONS -include $(HPATH)/linux/modversions.h
  319. endif
  320. .PHONY: modules
  321. modules: $(patsubst %, _mod_%, $(SUBDIRS))
  322. .PHONY: $(patsubst %, _mod_%, $(SUBDIRS))
  323. $(patsubst %, _mod_%, $(SUBDIRS)) : include/linux/version.h include/config/MARKER
  324. $(MAKE) -C $(patsubst _mod_%, %, $@) CFLAGS="$(CFLAGS) $(MODFLAGS)" MAKING_MODULES=1 modules
  325. .PHONY: modules_install
  326. modules_install: _modinst_ $(patsubst %, _modinst_%, $(SUBDIRS)) _modinst_post
  327. .PHONY: _modinst_
  328. _modinst_:
  329. @rm -rf $(MODLIB)/kernel
  330. @rm -f $(MODLIB)/build
  331. @mkdir -p $(MODLIB)/kernel
  332. @ln -s $(TOPDIR) $(MODLIB)/build
  333. # If System.map exists, run depmod.  This deliberately does not have a
  334. # dependency on System.map since that would run the dependency tree on
  335. # vmlinux.  This depmod is only for convenience to give the initial
  336. # boot a modules.dep even before / is mounted read-write.  However the
  337. # boot script depmod is the master version.
  338. ifeq "$(strip $(INSTALL_MOD_PATH))" ""
  339. depmod_opts :=
  340. else
  341. depmod_opts := -b $(INSTALL_MOD_PATH) -r
  342. endif
  343. .PHONY: _modinst_post
  344. _modinst_post: _modinst_post_pcmcia
  345. if [ -r System.map ]; then $(DEPMOD) -ae -F System.map $(depmod_opts) $(KERNELRELEASE); fi
  346. # Backwards compatibilty symlinks for people still using old versions
  347. # of pcmcia-cs with hard coded pathnames on insmod.  Remove
  348. # _modinst_post_pcmcia for kernel 2.4.1.
  349. .PHONY: _modinst_post_pcmcia
  350. _modinst_post_pcmcia:
  351. cd $(MODLIB); 
  352. mkdir -p pcmcia; 
  353. find kernel -path '*/pcmcia/*' -name '*.o' | xargs -i -r ln -sf ../{} pcmcia
  354. .PHONY: $(patsubst %, _modinst_%, $(SUBDIRS))
  355. $(patsubst %, _modinst_%, $(SUBDIRS)) :
  356. $(MAKE) -C $(patsubst _modinst_%, %, $@) modules_install
  357. # modules disabled....
  358. else
  359. modules modules_install: dummy
  360. @echo
  361. @echo "The present kernel configuration has modules disabled."
  362. @echo "Type 'make config' and enable loadable module support."
  363. @echo "Then build a kernel with module support enabled."
  364. @echo
  365. @exit 1
  366. endif
  367. clean: archclean
  368. find . ( -name '*.[oas]' -o -name core -o -name '.*.flags' ) -type f -print 
  369. | grep -v lxdialog/ | xargs rm -f
  370. rm -f $(CLEAN_FILES)
  371. rm -rf $(CLEAN_DIRS)
  372. $(MAKE) -C Documentation/DocBook clean
  373. mrproper: clean archmrproper
  374. find . ( -size 0 -o -name .depend ) -type f -print | xargs rm -f
  375. rm -f $(MRPROPER_FILES)
  376. rm -rf $(MRPROPER_DIRS)
  377. $(MAKE) -C Documentation/DocBook mrproper
  378. distclean: mrproper
  379. rm -f core `find . ( -not -type d ) -and 
  380. ( -name '*.orig' -o -name '*.rej' -o -name '*~' 
  381. -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' 
  382. -o -name '.*.rej' -o -name '.SUMS' -o -size 0 ) -type f -print` TAGS tags
  383. backup: mrproper
  384. cd .. && tar cf - linux/ | gzip -9 > backup.gz
  385. sync
  386. sgmldocs: 
  387. chmod 755 $(TOPDIR)/scripts/docgen
  388. chmod 755 $(TOPDIR)/scripts/gen-all-syms
  389. chmod 755 $(TOPDIR)/scripts/kernel-doc
  390. $(MAKE) -C $(TOPDIR)/Documentation/DocBook books
  391. psdocs: sgmldocs
  392. $(MAKE) -C Documentation/DocBook ps
  393. pdfdocs: sgmldocs
  394. $(MAKE) -C Documentation/DocBook pdf
  395. htmldocs: sgmldocs
  396. $(MAKE) -C Documentation/DocBook html
  397. mandocs:
  398. chmod 755 $(TOPDIR)/scripts/kernel-doc
  399. chmod 755 $(TOPDIR)/scripts/split-man
  400. $(MAKE) -C Documentation/DocBook man
  401. sums:
  402. find . -type f -print | sort | xargs sum > .SUMS
  403. dep-files: scripts/mkdep archdep include/linux/version.h
  404. scripts/mkdep -- init/*.c > .depend
  405. scripts/mkdep -- `find $(FINDHPATH) ( -name SCCS -o -name .svn ) -prune -o -follow -name *.h ! -name modversions.h -print` > .hdepend
  406. $(MAKE) $(patsubst %,_sfdep_%,$(SUBDIRS)) _FASTDEP_ALL_SUB_DIRS="$(SUBDIRS)"
  407. ifdef CONFIG_MODVERSIONS
  408. $(MAKE) update-modverfile
  409. endif
  410. ifdef CONFIG_MODVERSIONS
  411. MODVERFILE := $(TOPDIR)/include/linux/modversions.h
  412. else
  413. MODVERFILE :=
  414. endif
  415. export MODVERFILE
  416. depend dep: dep-files
  417. checkconfig:
  418. find * -name '*.[hcS]' -type f -print | sort | xargs $(PERL) -w scripts/checkconfig.pl
  419. checkhelp:
  420. find * -name [cC]onfig.in -print | sort | xargs $(PERL) -w scripts/checkhelp.pl
  421. checkincludes:
  422. find * -name '*.[hcS]' -type f -print | sort | xargs $(PERL) -w scripts/checkincludes.pl
  423. ifdef CONFIGURATION
  424. ..$(CONFIGURATION):
  425. @echo
  426. @echo "You have a bad or nonexistent" .$(CONFIGURATION) ": running 'make" $(CONFIGURATION)"'"
  427. @echo
  428. $(MAKE) $(CONFIGURATION)
  429. @echo
  430. @echo "Successful. Try re-making (ignore the error that follows)"
  431. @echo
  432. exit 1
  433. #dummy: ..$(CONFIGURATION)
  434. dummy:
  435. else
  436. dummy:
  437. endif
  438. include Rules.make
  439. #
  440. # This generates dependencies for the .h files.
  441. #
  442. scripts/mkdep: scripts/mkdep.c
  443. $(HOSTCC) $(HOSTCFLAGS) -o scripts/mkdep scripts/mkdep.c
  444. scripts/split-include: scripts/split-include.c
  445. $(HOSTCC) $(HOSTCFLAGS) -o scripts/split-include scripts/split-include.c
  446. #
  447. # RPM target
  448. #
  449. # If you do a make spec before packing the tarball you can rpm -ta it
  450. #
  451. spec:
  452. . scripts/mkspec >kernel.spec
  453. #
  454. # Build a tar ball, generate an rpm from it and pack the result
  455. # There arw two bits of magic here
  456. # 1) The use of /. to avoid tar packing just the symlink
  457. # 2) Removing the .dep files as they have source paths in them that
  458. #    will become invalid
  459. #
  460. rpm: clean spec
  461. find . ( -size 0 -o -name .depend -o -name .hdepend ) -type f -print | xargs rm -f
  462. set -e; 
  463. cd $(TOPDIR)/.. ; 
  464. ln -sf $(TOPDIR) $(KERNELPATH) ; 
  465. tar -cvz --exclude CVS -f $(KERNELPATH).tar.gz $(KERNELPATH)/. ; 
  466. rm $(KERNELPATH) ; 
  467. cd $(TOPDIR) ; 
  468. . scripts/mkversion > .version ; 
  469. rpm -ta $(TOPDIR)/../$(KERNELPATH).tar.gz ; 
  470. rm $(TOPDIR)/../$(KERNELPATH).tar.gz