Makefile
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # alpha/Makefile
  3. #
  4. # This file is subject to the terms and conditions of the GNU General Public
  5. # License.  See the file "COPYING" in the main directory of this archive
  6. # for more details.
  7. #
  8. # Copyright (C) 1994 by Linus Torvalds
  9. #
  10. NM := $(NM) -B
  11. LINKFLAGS = -static -T arch/alpha/vmlinux.lds -N #-relax
  12. CFLAGS := $(CFLAGS) -pipe -mno-fp-regs -ffixed-8
  13. # Determine if we can use the BWX instructions with GAS.
  14. old_gas := $(shell if $(AS) --version 2>&1 | grep 'version 2.7' > /dev/null; then echo y; else echo n; fi)
  15. # Determine if GCC understands the -mcpu= option.
  16. have_mcpu := $(shell if $(CC) -mcpu=ev5 -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo y; else echo n; fi)
  17. have_mcpu_pca56 := $(shell if $(CC) -mcpu=pca56 -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo y; else echo n; fi)
  18. have_mcpu_ev6 := $(shell if $(CC) -mcpu=ev6 -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo y; else echo n; fi)
  19. have_mcpu_ev67 := $(shell if $(CC) -mcpu=ev67 -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo y; else echo n; fi)
  20. # Turn on the proper cpu optimizations.
  21. ifeq ($(have_mcpu),y)
  22.   # If GENERIC, make sure to turn off any instruction set extensions that
  23.   # the host compiler might have on by default.  Given that EV4 and EV5
  24.   # have the same instruction set, prefer EV5 because an EV5 schedule is
  25.   # more likely to keep an EV4 processor busy than vice-versa.
  26.   mcpu_done := n
  27.   ifeq ($(CONFIG_ALPHA_GENERIC),y)
  28.     CFLAGS := $(CFLAGS) -mcpu=ev5
  29.     mcpu_done := y
  30.   endif
  31.   ifeq ($(mcpu_done)$(CONFIG_ALPHA_SX164)$(have_mcpu_pca56),nyy)
  32.     CFLAGS := $(CFLAGS) -mcpu=pca56
  33.     mcpu_done := y
  34.   endif
  35.   ifeq ($(mcpu_done)$(CONFIG_ALPHA_PYXIS),ny)
  36.     CFLAGS := $(CFLAGS) -mcpu=ev56
  37.     mcpu_done := y
  38.   endif
  39.   ifeq ($(mcpu_done)$(CONFIG_ALPHA_POLARIS),ny)
  40.     ifeq ($(have_mcpu_pca56),y)
  41.       CFLAGS := $(CFLAGS) -mcpu=pca56
  42.     else
  43.       CFLAGS := $(CFLAGS) -mcpu=ev56
  44.     endif
  45.     mcpu_done := y
  46.   endif
  47.   ifeq ($(mcpu_done)$(CONFIG_ALPHA_EV4),ny)
  48.     CFLAGS := $(CFLAGS) -mcpu=ev4
  49.     mcpu_done := y
  50.   endif
  51.   ifeq ($(mcpu_done)$(CONFIG_ALPHA_EV67)$(have_mcpu_ev67),nyy)
  52.     CFLAGS := $(CFLAGS) -mcpu=ev67
  53.     mcpu_done := y
  54.   endif
  55.   ifeq ($(mcpu_done)$(CONFIG_ALPHA_EV6),ny)
  56.     ifeq ($(have_mcpu_ev6),y)
  57.       CFLAGS := $(CFLAGS) -mcpu=ev6
  58.     else
  59.       ifeq ($(have_mcpu_pca56),y)
  60.         CFLAGS := $(CFLAGS) -mcpu=pca56
  61.       else
  62.         CFLAGS := $(CFLAGS) -mcpu=ev56
  63.       endif
  64.     endif
  65.     mcpu_done := y
  66.   endif
  67. endif
  68. # For TSUNAMI, we must have the assembler not emulate our instructions.
  69. # The same is true for IRONGATE, POLARIS, PYXIS.
  70. # BWX is most important, but we don't really want any emulation ever.
  71. ifeq ($(old_gas),y)
  72.   # How do we do #error in make?
  73.   CFLAGS := --error-please-upgrade-your-assembler
  74. endif
  75. CFLAGS := $(CFLAGS) -Wa,-mev6
  76. HEAD := arch/alpha/kernel/head.o
  77. SUBDIRS := $(SUBDIRS) arch/alpha/kernel arch/alpha/mm arch/alpha/lib 
  78. arch/alpha/math-emu
  79. CORE_FILES := arch/alpha/kernel/kernel.o arch/alpha/mm/mm.o $(CORE_FILES)
  80. ifeq ($(CONFIG_MATHEMU),y)
  81.   CORE_FILES := $(CORE_FILES) arch/alpha/math-emu/math-emu.o
  82. endif
  83. LIBS := $(TOPDIR)/arch/alpha/lib/lib.a $(LIBS) $(TOPDIR)/arch/alpha/lib/lib.a
  84. MAKEBOOT = $(MAKE) -C arch/alpha/boot
  85. rawboot:
  86. @$(MAKEBOOT) rawboot
  87. #
  88. # My boot writes directly to a specific disk partition, I doubt most
  89. # people will want to do that without changes..
  90. #
  91. msb my-special-boot:
  92. @$(MAKEBOOT) msb
  93. bootimage:
  94. @$(MAKEBOOT) bootimage
  95. srmboot:
  96. @$(MAKEBOOT) srmboot
  97. archclean:
  98. @$(MAKE) -C arch/alpha/kernel clean
  99. @$(MAKEBOOT) clean
  100. rm -f arch/alpha/vmlinux.lds
  101. archmrproper:
  102. archdep:
  103. @$(MAKEBOOT) dep
  104. vmlinux: arch/alpha/vmlinux.lds
  105. arch/alpha/vmlinux.lds: arch/alpha/vmlinux.lds.in
  106. $(CPP) $(CPPFLAGS) -xc -P arch/alpha/vmlinux.lds.in -o arch/alpha/vmlinux.lds
  107. bootpfile:
  108. @$(MAKEBOOT) bootpfile