linux/arch/m68knommu/Makefile
<<
>>
Prefs
   1#
   2# arch/m68knommu/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# (C) Copyright 2002, Greg Ungerer <gerg@snapgear.com>
   9#
  10
  11platform-$(CONFIG_M68328)       := 68328
  12platform-$(CONFIG_M68EZ328)     := 68EZ328
  13platform-$(CONFIG_M68VZ328)     := 68VZ328
  14platform-$(CONFIG_M68360)       := 68360
  15platform-$(CONFIG_M5206)        := 5206
  16platform-$(CONFIG_M5206e)       := 5206e
  17platform-$(CONFIG_M520x)        := 520x
  18platform-$(CONFIG_M523x)        := 523x
  19platform-$(CONFIG_M5249)        := 5249
  20platform-$(CONFIG_M527x)        := 527x
  21platform-$(CONFIG_M5272)        := 5272
  22platform-$(CONFIG_M528x)        := 528x
  23platform-$(CONFIG_M5307)        := 5307
  24platform-$(CONFIG_M532x)        := 532x
  25platform-$(CONFIG_M5407)        := 5407
  26PLATFORM := $(platform-y)
  27
  28board-$(CONFIG_PILOT)           := pilot
  29board-$(CONFIG_UC5272)          := UC5272
  30board-$(CONFIG_UC5282)          := UC5282
  31board-$(CONFIG_UCSIMM)          := ucsimm
  32board-$(CONFIG_UCDIMM)          := ucdimm
  33board-$(CONFIG_UCQUICC)         := uCquicc
  34board-$(CONFIG_DRAGEN2)         := de2
  35board-$(CONFIG_ARNEWSH)         := ARNEWSH
  36board-$(CONFIG_FREESCALE)       := FREESCALE
  37board-$(CONFIG_M5235EVB)        := M5235EVB
  38board-$(CONFIG_M5271EVB)        := M5271EVB
  39board-$(CONFIG_M5275EVB)        := M5275EVB
  40board-$(CONFIG_M5282EVB)        := M5282EVB
  41board-$(CONFIG_ELITE)           := eLITE
  42board-$(CONFIG_eLIA)            := eLIA
  43board-$(CONFIG_NETtel)          := NETtel
  44board-$(CONFIG_SECUREEDGEMP3)   := MP3
  45board-$(CONFIG_CLEOPATRA)       := CLEOPATRA
  46board-$(CONFIG_senTec)          := senTec
  47board-$(CONFIG_SNEHA)           := SNEHA
  48board-$(CONFIG_M5208EVB)        := M5208EVB
  49board-$(CONFIG_MOD5272)         := MOD5272
  50board-$(CONFIG_AVNET)           := AVNET
  51board-$(CONFIG_SAVANT)          := SAVANT
  52BOARD := $(board-y)
  53
  54model-$(CONFIG_RAMKERNEL)       := ram
  55model-$(CONFIG_ROMKERNEL)       := rom
  56MODEL := $(model-y)
  57
  58#
  59# Some code support is grouped together for a common cpu-subclass (for
  60# example all ColdFire cpu's are very similar). Determine the sub-class
  61# for the selected cpu. ONLY need to define this for the non-base member
  62# of the family.
  63#
  64cpuclass-$(CONFIG_M5206)        := 5307
  65cpuclass-$(CONFIG_M5206e)       := 5307
  66cpuclass-$(CONFIG_M520x)        := 5307
  67cpuclass-$(CONFIG_M523x)        := 5307
  68cpuclass-$(CONFIG_M5249)        := 5307
  69cpuclass-$(CONFIG_M527x)        := 5307
  70cpuclass-$(CONFIG_M5272)        := 5307
  71cpuclass-$(CONFIG_M528x)        := 5307
  72cpuclass-$(CONFIG_M5307)        := 5307
  73cpuclass-$(CONFIG_M532x)        := 5307
  74cpuclass-$(CONFIG_M5407)        := 5307
  75cpuclass-$(CONFIG_M68328)       := 68328
  76cpuclass-$(CONFIG_M68EZ328)     := 68328
  77cpuclass-$(CONFIG_M68VZ328)     := 68328
  78cpuclass-$(CONFIG_M68360)       := 68360
  79CPUCLASS := $(cpuclass-y)
  80
  81ifneq ($(CPUCLASS),$(PLATFORM))
  82CLASSDIR := arch/m68knommu/platform/$(cpuclass-y)/
  83endif
  84
  85export PLATFORM BOARD MODEL CPUCLASS
  86
  87#
  88# Some CFLAG additions based on specific CPU type.
  89#
  90cflags-$(CONFIG_M5206)          := -m5200
  91cflags-$(CONFIG_M5206e)         := -m5200
  92cflags-$(CONFIG_M520x)          := -m5307
  93cflags-$(CONFIG_M523x)          := -m5307
  94cflags-$(CONFIG_M5249)          := -m5200
  95cflags-$(CONFIG_M527x)          := -m5307
  96cflags-$(CONFIG_M5272)          := -m5307
  97cflags-$(CONFIG_M528x)          := -m5307
  98cflags-$(CONFIG_M5307)          := -m5307
  99cflags-$(CONFIG_M532x)          := -m5307
 100cflags-$(CONFIG_M5407)          := -m5200
 101cflags-$(CONFIG_M68328)         := -m68000
 102cflags-$(CONFIG_M68EZ328)       := -m68000
 103cflags-$(CONFIG_M68VZ328)       := -m68000
 104cflags-$(CONFIG_M68360)         := -m68332
 105
 106KBUILD_AFLAGS += $(cflags-y)
 107
 108KBUILD_CFLAGS += $(cflags-y)
 109KBUILD_CFLAGS += -D__linux__
 110KBUILD_CFLAGS += -DUTS_SYSNAME=\"uClinux\"
 111
 112head-y := arch/m68knommu/platform/$(cpuclass-y)/head.o
 113
 114core-y  += arch/m68knommu/kernel/ \
 115           arch/m68knommu/mm/ \
 116           $(CLASSDIR) \
 117           arch/m68knommu/platform/$(PLATFORM)/
 118libs-y  += arch/m68knommu/lib/
 119
 120archclean:
 121
 122