| Greg Ungerer | 281eff5 | 2011-06-21 14:03:30 +1000 | [diff] [blame] | 1 | # | 
 | 2 | # m68k/Makefile | 
 | 3 | # | 
 | 4 | # This file is included by the global makefile so that you can add your own | 
 | 5 | # architecture-specific flags and dependencies. Remember to do have actions | 
 | 6 | # for "archclean" and "archdep" for cleaning up and making dependencies for | 
 | 7 | # this architecture | 
 | 8 | # | 
 | 9 | # This file is subject to the terms and conditions of the GNU General Public | 
 | 10 | # License.  See the file "COPYING" in the main directory of this archive | 
 | 11 | # for more details. | 
 | 12 | # | 
 | 13 | # Copyright (C) 1994 by Hamish Macdonald | 
 | 14 | # Copyright (C) 2002,2011 Greg Ungerer <gerg@snapgear.com> | 
 | 15 | # | 
 | 16 |  | 
| Adrian Bunk | b739912 | 2008-07-17 21:16:14 +0200 | [diff] [blame] | 17 | KBUILD_DEFCONFIG := multi_defconfig | 
| Adrian Bunk | ef85ecbf | 2008-04-04 14:57:38 +0200 | [diff] [blame] | 18 |  | 
| Geert Uytterhoeven | f25e918 | 2012-05-12 22:14:36 +0200 | [diff] [blame^] | 19 | ifneq ($(SUBARCH),$(ARCH)) | 
 | 20 | 	ifeq ($(CROSS_COMPILE),) | 
 | 21 | 		CROSS_COMPILE := $(call cc-cross-prefix, \ | 
 | 22 | 			m68k-linux-gnu- m68k-linux- m68k-unknown-linux-gnu-) | 
 | 23 | 	endif | 
 | 24 | endif | 
 | 25 |  | 
| Greg Ungerer | 281eff5 | 2011-06-21 14:03:30 +1000 | [diff] [blame] | 26 | # | 
 | 27 | #	Enable processor type. Ordering of these is important - we want to | 
 | 28 | #	use the minimum processor type of the range we support. The logic | 
 | 29 | #	for 680x0 will only allow use of the -m68060 or -m68040 if no other | 
 | 30 | #	680x0 type is specified - and no option is specified for 68030 or | 
 | 31 | #	68020. The other m68k/ColdFire types always specify some type of | 
 | 32 | #	compiler cpu type flag. | 
 | 33 | # | 
 | 34 | ifndef CONFIG_M68040 | 
 | 35 | cpuflags-$(CONFIG_M68060)	:= -m68060 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | endif | 
| Greg Ungerer | 281eff5 | 2011-06-21 14:03:30 +1000 | [diff] [blame] | 37 | ifndef CONFIG_M68060 | 
 | 38 | cpuflags-$(CONFIG_M68040)	:= -m68040 | 
 | 39 | endif | 
 | 40 | cpuflags-$(CONFIG_M68030)	:= | 
 | 41 | cpuflags-$(CONFIG_M68020)	:= | 
 | 42 | cpuflags-$(CONFIG_M68360)	:= -m68332 | 
 | 43 | cpuflags-$(CONFIG_M68000)	:= -m68000 | 
 | 44 | cpuflags-$(CONFIG_M54xx)	:= $(call cc-option,-mcpu=5475,-m5200) | 
 | 45 | cpuflags-$(CONFIG_M5407)	:= $(call cc-option,-mcpu=5407,-m5200) | 
 | 46 | cpuflags-$(CONFIG_M532x)	:= $(call cc-option,-mcpu=532x,-m5307) | 
 | 47 | cpuflags-$(CONFIG_M5307)	:= $(call cc-option,-mcpu=5307,-m5200) | 
 | 48 | cpuflags-$(CONFIG_M528x)	:= $(call cc-option,-mcpu=528x,-m5307) | 
 | 49 | cpuflags-$(CONFIG_M5275)	:= $(call cc-option,-mcpu=5275,-m5307) | 
 | 50 | cpuflags-$(CONFIG_M5272)	:= $(call cc-option,-mcpu=5272,-m5307) | 
 | 51 | cpuflags-$(CONFIG_M5271)	:= $(call cc-option,-mcpu=5271,-m5307) | 
 | 52 | cpuflags-$(CONFIG_M523x)	:= $(call cc-option,-mcpu=523x,-m5307) | 
 | 53 | cpuflags-$(CONFIG_M5249)	:= $(call cc-option,-mcpu=5249,-m5200) | 
 | 54 | cpuflags-$(CONFIG_M520x)	:= $(call cc-option,-mcpu=5208,-m5200) | 
 | 55 | cpuflags-$(CONFIG_M5206e)	:= $(call cc-option,-mcpu=5206e,-m5200) | 
 | 56 | cpuflags-$(CONFIG_M5206)	:= $(call cc-option,-mcpu=5206,-m5200) | 
 | 57 |  | 
 | 58 | KBUILD_AFLAGS += $(cpuflags-y) | 
 | 59 | KBUILD_CFLAGS += $(cpuflags-y) -pipe | 
 | 60 | ifdef CONFIG_MMU | 
 | 61 | # without -fno-strength-reduce the 53c7xx.c driver fails ;-( | 
 | 62 | KBUILD_CFLAGS += -fno-strength-reduce -ffixed-a2 | 
 | 63 | else | 
 | 64 | # we can use a m68k-linux-gcc toolchain with these in place | 
 | 65 | KBUILD_CFLAGS += -DUTS_SYSNAME=\"uClinux\" | 
 | 66 | KBUILD_CFLAGS += -D__uClinux__ | 
 | 67 | KBUILD_AFLAGS += -D__uClinux__ | 
 | 68 | endif | 
 | 69 |  | 
 | 70 | LDFLAGS := -m m68kelf | 
 | 71 | KBUILD_LDFLAGS_MODULE += -T $(srctree)/arch/m68k/kernel/module.lds | 
| Greg Ungerer | 281eff5 | 2011-06-21 14:03:30 +1000 | [diff] [blame] | 72 |  | 
 | 73 | ifdef CONFIG_SUN3 | 
 | 74 | LDFLAGS_vmlinux = -N | 
 | 75 | endif | 
 | 76 |  | 
 | 77 | CHECKFLAGS += -D__mc68000__ | 
 | 78 |  | 
 | 79 |  | 
 | 80 | ifdef CONFIG_KGDB | 
 | 81 | # If configured for kgdb support, include debugging infos and keep the | 
 | 82 | # frame pointer | 
 | 83 | KBUILD_CFLAGS := $(subst -fomit-frame-pointer,,$(KBUILD_CFLAGS)) -g | 
 | 84 | endif | 
 | 85 |  | 
 | 86 | # | 
 | 87 | # Select the assembler head startup code. Order is important. The default | 
 | 88 | # head code is first, processor specific selections can override it after. | 
 | 89 | # | 
 | 90 | head-y				:= arch/m68k/kernel/head.o | 
 | 91 | head-$(CONFIG_SUN3)		:= arch/m68k/kernel/sun3-head.o | 
 | 92 | head-$(CONFIG_M68360)		:= arch/m68k/platform/68360/head.o | 
 | 93 | head-$(CONFIG_M68000)		:= arch/m68k/platform/68328/head.o | 
 | 94 | head-$(CONFIG_COLDFIRE)		:= arch/m68k/platform/coldfire/head.o | 
 | 95 |  | 
 | 96 | core-y				+= arch/m68k/kernel/	arch/m68k/mm/ | 
 | 97 | libs-y				+= arch/m68k/lib/ | 
 | 98 |  | 
 | 99 | core-$(CONFIG_Q40)		+= arch/m68k/q40/ | 
 | 100 | core-$(CONFIG_AMIGA)		+= arch/m68k/amiga/ | 
 | 101 | core-$(CONFIG_ATARI)		+= arch/m68k/atari/ | 
 | 102 | core-$(CONFIG_MAC)		+= arch/m68k/mac/ | 
 | 103 | core-$(CONFIG_HP300)		+= arch/m68k/hp300/ | 
 | 104 | core-$(CONFIG_APOLLO)		+= arch/m68k/apollo/ | 
 | 105 | core-$(CONFIG_MVME147)		+= arch/m68k/mvme147/ | 
 | 106 | core-$(CONFIG_MVME16x)		+= arch/m68k/mvme16x/ | 
 | 107 | core-$(CONFIG_BVME6000)		+= arch/m68k/bvme6000/ | 
 | 108 | core-$(CONFIG_SUN3X)		+= arch/m68k/sun3x/	arch/m68k/sun3/ | 
 | 109 | core-$(CONFIG_SUN3)		+= arch/m68k/sun3/	arch/m68k/sun3/prom/ | 
 | 110 | core-$(CONFIG_NATFEAT)		+= arch/m68k/emu/ | 
 | 111 | core-$(CONFIG_M68040)		+= arch/m68k/fpsp040/ | 
 | 112 | core-$(CONFIG_M68060)		+= arch/m68k/ifpsp060/ | 
 | 113 | core-$(CONFIG_M68KFPU_EMU)	+= arch/m68k/math-emu/ | 
 | 114 | core-$(CONFIG_M68360)		+= arch/m68k/platform/68360/ | 
 | 115 | core-$(CONFIG_M68000)		+= arch/m68k/platform/68328/ | 
 | 116 | core-$(CONFIG_M68EZ328)		+= arch/m68k/platform/68EZ328/ | 
 | 117 | core-$(CONFIG_M68VZ328)		+= arch/m68k/platform/68VZ328/ | 
 | 118 | core-$(CONFIG_COLDFIRE)		+= arch/m68k/platform/coldfire/ | 
 | 119 | core-$(CONFIG_M5206)		+= arch/m68k/platform/5206/ | 
 | 120 | core-$(CONFIG_M5206e)		+= arch/m68k/platform/5206/ | 
 | 121 | core-$(CONFIG_M520x)		+= arch/m68k/platform/520x/ | 
 | 122 | core-$(CONFIG_M523x)		+= arch/m68k/platform/523x/ | 
 | 123 | core-$(CONFIG_M5249)		+= arch/m68k/platform/5249/ | 
 | 124 | core-$(CONFIG_M527x)		+= arch/m68k/platform/527x/ | 
 | 125 | core-$(CONFIG_M5272)		+= arch/m68k/platform/5272/ | 
 | 126 | core-$(CONFIG_M528x)		+= arch/m68k/platform/528x/ | 
 | 127 | core-$(CONFIG_M5307)		+= arch/m68k/platform/5307/ | 
 | 128 | core-$(CONFIG_M532x)		+= arch/m68k/platform/532x/ | 
 | 129 | core-$(CONFIG_M5407)		+= arch/m68k/platform/5407/ | 
 | 130 | core-$(CONFIG_M54xx)		+= arch/m68k/platform/54xx/ | 
 | 131 |  | 
 | 132 |  | 
 | 133 | all:	zImage | 
 | 134 |  | 
 | 135 | lilo:	vmlinux | 
 | 136 | 	if [ -f $(INSTALL_PATH)/vmlinux ]; then mv -f $(INSTALL_PATH)/vmlinux $(INSTALL_PATH)/vmlinux.old; fi | 
 | 137 | 	if [ -f $(INSTALL_PATH)/System.map ]; then mv -f $(INSTALL_PATH)/System.map $(INSTALL_PATH)/System.old; fi | 
 | 138 | 	cat vmlinux > $(INSTALL_PATH)/vmlinux | 
 | 139 | 	cp System.map $(INSTALL_PATH)/System.map | 
 | 140 | 	if [ -x /sbin/lilo ]; then /sbin/lilo; else /etc/lilo/install; fi | 
 | 141 |  | 
 | 142 | zImage compressed: vmlinux.gz | 
 | 143 |  | 
 | 144 | vmlinux.gz: vmlinux | 
 | 145 |  | 
 | 146 | ifndef CONFIG_KGDB | 
 | 147 | 	cp vmlinux vmlinux.tmp | 
 | 148 | 	$(STRIP) vmlinux.tmp | 
 | 149 | 	gzip -9c vmlinux.tmp >vmlinux.gz | 
 | 150 | 	rm vmlinux.tmp | 
 | 151 | else | 
 | 152 | 	gzip -9c vmlinux >vmlinux.gz | 
 | 153 | endif | 
 | 154 |  | 
 | 155 | bzImage: vmlinux.bz2 | 
 | 156 |  | 
 | 157 | vmlinux.bz2: vmlinux | 
 | 158 |  | 
 | 159 | ifndef CONFIG_KGDB | 
 | 160 | 	cp vmlinux vmlinux.tmp | 
 | 161 | 	$(STRIP) vmlinux.tmp | 
 | 162 | 	bzip2 -1c vmlinux.tmp >vmlinux.bz2 | 
 | 163 | 	rm vmlinux.tmp | 
 | 164 | else | 
 | 165 | 	bzip2 -1c vmlinux >vmlinux.bz2 | 
 | 166 | endif | 
 | 167 |  | 
 | 168 | archclean: | 
 | 169 | 	rm -f vmlinux.gz vmlinux.bz2 | 
 | 170 |  | 
 | 171 | install: | 
 | 172 | 	sh $(srctree)/arch/m68k/install.sh $(KERNELRELEASE) vmlinux.gz System.map "$(INSTALL_PATH)" |