blob: 7b842e98efed40ebd1a9d7ca03900094f74ac7f0 [file] [log] [blame]
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001#
2# This file is subject to the terms and conditions of the GNU General Public
3# License. See the file "COPYING" in the main directory of this archive
4# for more details.
5#
6# Copyright (C) 2004-2006 Atmel Corporation.
7
8# Default target when executing plain make
9.PHONY: all
Haavard Skinnemoen0430fb22006-10-24 10:12:39 +020010all: uImage vmlinux.elf
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -070011
12KBUILD_DEFCONFIG := atstk1002_defconfig
13
14CFLAGS += -pipe -fno-builtin -mno-pic
15AFLAGS += -mrelax -mno-pic
16CFLAGS_MODULE += -mno-relax
17LDFLAGS_vmlinux += --relax
18
19cpuflags-$(CONFIG_CPU_AP7000) += -mcpu=ap7000
20
21CFLAGS += $(cpuflags-y)
22AFLAGS += $(cpuflags-y)
23
Haavard Skinnemoen0430fb22006-10-24 10:12:39 +020024CHECKFLAGS += -D__avr32__ -D__BIG_ENDIAN
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -070025
26head-$(CONFIG_LOADER_U_BOOT) += arch/avr32/boot/u-boot/head.o
27head-y += arch/avr32/kernel/head.o
28core-$(CONFIG_PLATFORM_AT32AP) += arch/avr32/mach-at32ap/
29core-$(CONFIG_BOARD_ATSTK1000) += arch/avr32/boards/atstk1000/
30core-$(CONFIG_LOADER_U_BOOT) += arch/avr32/boot/u-boot/
31core-y += arch/avr32/kernel/
32core-y += arch/avr32/mm/
Haavard Skinnemoen0430fb22006-10-24 10:12:39 +020033libs-y += arch/avr32/lib/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -070034
35archincdir-$(CONFIG_PLATFORM_AT32AP) := arch-at32ap
36
37include/asm-avr32/.arch: $(wildcard include/config/platform/*.h) include/config/auto.conf
38 @echo ' SYMLINK include/asm-avr32/arch -> include/asm-avr32/$(archincdir-y)'
39ifneq ($(KBUILD_SRC),)
40 $(Q)mkdir -p include/asm-avr32
41 $(Q)ln -fsn $(srctree)/include/asm-avr32/$(archincdir-y) include/asm-avr32/arch
42else
43 $(Q)ln -fsn $(archincdir-y) include/asm-avr32/arch
44endif
45 @touch $@
46
47archprepare: include/asm-avr32/.arch
48
Haavard Skinnemoen0430fb22006-10-24 10:12:39 +020049CLEAN_FILES += include/asm-avr32/.arch include/asm-avr32/arch
50
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -070051BOOT_TARGETS := vmlinux.elf vmlinux.bin uImage uImage.srec
52
53.PHONY: $(BOOT_TARGETS) install
54
55boot := arch/$(ARCH)/boot/images
56
57 KBUILD_IMAGE := $(boot)/uImage
58vmlinux.elf: KBUILD_IMAGE := $(boot)/vmlinux.elf
59vmlinux.cso: KBUILD_IMAGE := $(boot)/vmlinux.cso
60uImage.srec: KBUILD_IMAGE := $(boot)/uImage.srec
61uImage: KBUILD_IMAGE := $(boot)/uImage
62
63quiet_cmd_listing = LST $@
64 cmd_listing = avr32-linux-objdump $(OBJDUMPFLAGS) -lS $< > $@
65quiet_cmd_disasm = DIS $@
66 cmd_disasm = avr32-linux-objdump $(OBJDUMPFLAGS) -d $< > $@
67
68vmlinux.elf vmlinux.bin uImage.srec uImage vmlinux.cso: vmlinux
69 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
70
71install: vmlinux
72 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) $@
73
Haavard Skinnemoen0430fb22006-10-24 10:12:39 +020074vmlinux.s: vmlinux
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -070075 $(call if_changed,disasm)
76
Haavard Skinnemoen0430fb22006-10-24 10:12:39 +020077vmlinux.lst: vmlinux
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -070078 $(call if_changed,listing)
79
Haavard Skinnemoen0430fb22006-10-24 10:12:39 +020080CLEAN_FILES += vmlinux.s vmlinux.lst
81
82archclean:
83 $(Q)$(MAKE) $(clean)=$(boot)
84
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -070085define archhelp
86 @echo '* vmlinux.elf - ELF image with load address 0'
87 @echo ' vmlinux.cso - PathFinder CSO image'
Haavard Skinnemoen0430fb22006-10-24 10:12:39 +020088 @echo '* uImage - Create a bootable image for U-Boot'
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -070089endef