add msse for x86/x86_64 builds
[openadk.git] / target / sh / Makefile
blob27cc9696fe7c8543bde385e016271aa21bbf98b3
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 include $(ADK_TOPDIR)/rules.mk
5 include $(ADK_TOPDIR)/mk/kernel.mk
6 include $(ADK_TOPDIR)/mk/modules.mk
7 include $(ADK_TOPDIR)/mk/kernel-build.mk
8 include $(ADK_TOPDIR)/mk/image.mk
10 KERNEL:=$(LINUX_DIR)/arch/sh/boot/zImage
12 QEMU_ARGS:=-M r2d
13 QEMU_ARGS+=${ADK_QEMU_ARGS}
14 QEMU_ARGS+=-monitor null
15 QEMU_ARGS+=-net user -net nic,model=rtl8139
17 ifeq ($(ADK_TARGET_QEMU_WITH_GRAPHIC),)
18 QEMU_ARGS+=-serial null -serial stdio
19 endif
21 # target helper text
22 ifeq ($(ADK_TARGET_FS),archive)
23 targethelp:
24 @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)"
25 ifeq ($(ADK_TARGET_QEMU),y)
26 @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
27 @echo "Use following command to create a QEMU Image:"
28 @echo "./scripts/create.sh qemu-${ADK_TARGET_CPU_ARCH}.img $(FW_DIR)/$(ROOTFSTARBALL)"
29 @echo "Start qemu with following options:"
30 @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) qemu-${ADK_TARGET_CPU_ARCH}.img'
31 endif
32 endif
33 ifeq ($(ADK_TARGET_FS),initramfs)
34 targethelp:
35 @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
36 @echo 'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
37 ifeq ($(ADK_TARGET_QEMU),y)
38 @echo "Start qemu with following command line:"
39 @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) -initrd ${FW_DIR}/${INITRAMFS}'
40 endif
41 endif
42 ifeq ($(ADK_TARGET_FS),initramfsarchive)
43 targethelp:
44 @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
45 @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
46 endif
47 ifeq ($(ADK_TARGET_FS),initramfspiggyback)
48 targethelp:
49 @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
50 ifeq ($(ADK_TARGET_QEMU),y)
51 @echo "Start qemu with following command line:"
52 @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
53 endif
54 endif
56 # image creation and kernel install
57 kernel-strip:
58 @cp $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
60 kernel-install: kernel-strip
61 @cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/${TARGET_KERNEL}
63 # filesystem specific targets
64 ifeq ($(ADK_TARGET_FS),archive)
65 imageinstall: $(FW_DIR)/$(ROOTFSTARBALL) targethelp
66 endif
67 ifeq ($(ADK_TARGET_FS),initramfs)
68 imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
69 endif
70 ifeq ($(ADK_TARGET_FS),initramfsarchive)
71 imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
72 endif
73 ifeq ($(ADK_TARGET_FS),initramfspiggyback)
74 imageinstall: createinitramfs targethelp
75 endif