OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [arch/] [m68k/] [Makefile] - Diff between revs 1765 and 1782

Only display areas with differences | Details | Blame | View Log

Rev 1765 Rev 1782
#
#
# m68k/Makefile
# m68k/Makefile
#
#
# This file is included by the global makefile so that you can add your own
# This file is included by the global makefile so that you can add your own
# architecture-specific flags and dependencies. Remember to do have actions
# architecture-specific flags and dependencies. Remember to do have actions
# for "archclean" and "archdep" for cleaning up and making dependencies for
# for "archclean" and "archdep" for cleaning up and making dependencies for
# this architecture
# this architecture
#
#
# This file is subject to the terms and conditions of the GNU General Public
# This file is subject to the terms and conditions of the GNU General Public
# License.  See the file "COPYING" in the main directory of this archive
# License.  See the file "COPYING" in the main directory of this archive
# for more details.
# for more details.
#
#
# Copyright (C) 1994 by Hamish Macdonald
# Copyright (C) 1994 by Hamish Macdonald
#
#
# override top level makefile
# override top level makefile
ifdef CONFIG_KERNEL_ELF
ifdef CONFIG_KERNEL_ELF
AS      = as -m68020
AS      = as -m68020
LD      = ld -m m68kelf
LD      = ld -m m68kelf
CC      := $(CC)
CC      := $(CC)
# set up for cross compiling
# set up for cross compiling
COMPILE_ARCH = $(shell uname -m)
COMPILE_ARCH = $(shell uname -m)
ifneq ($(COMPILE_ARCH),$(ARCH))
ifneq ($(COMPILE_ARCH),$(ARCH))
        CROSSDIR=/usr/$(ARCH)-linux
        CROSSDIR=/usr/$(ARCH)-linux
        CC := $(CROSSDIR)/$(CC)
        CC := $(CROSSDIR)/$(CC)
        AS := $(CROSSDIR)/$(AS)
        AS := $(CROSSDIR)/$(AS)
        LD := $(CROSSDIR)/$(LD)
        LD := $(CROSSDIR)/$(LD)
        AR := $(CROSSDIR)/$(AR)
        AR := $(CROSSDIR)/$(AR)
        NM := $(CROSSDIR)/$(NM)
        NM := $(CROSSDIR)/$(NM)
        STRIP := $(CROSSDIR)/$(STRIP)
        STRIP := $(CROSSDIR)/$(STRIP)
endif
endif
else
else
AS      = /usr/m68k-linuxaout/bin/as -m68020
AS      = /usr/m68k-linuxaout/bin/as -m68020
CC      := $(CC) -pipe -b m68k-linuxaout
CC      := $(CC) -pipe -b m68k-linuxaout
LD      = ld -m m68klinux
LD      = ld -m m68klinux
endif
endif
#
#
# Set these to indicate how to link it..
# Set these to indicate how to link it..
#
#
# -zmagic:
# -zmagic:
#
#
# LINKFLAGS    = -Ttext 0x100000
# LINKFLAGS    = -Ttext 0x100000
#
#
# -qmagic (we need to remove the 32 byte header for bootup purposes)
# -qmagic (we need to remove the 32 byte header for bootup purposes)
#
#
ifdef CONFIG_KERNEL_ELF
ifdef CONFIG_KERNEL_ELF
LINKFLAGS = -Ttext 0x1000
LINKFLAGS = -Ttext 0x1000
else
else
LINKFLAGS = -qmagic -Ttext 0xFE0
LINKFLAGS = -qmagic -Ttext 0xFE0
endif
endif
CFLAGS := $(CFLAGS) -pipe
CFLAGS := $(CFLAGS) -pipe
HEAD := arch/m68k/kernel/head.o
HEAD := arch/m68k/kernel/head.o
SUBDIRS += arch/m68k/kernel arch/m68k/mm arch/m68k/console arch/m68k/lib
SUBDIRS += arch/m68k/kernel arch/m68k/mm arch/m68k/console arch/m68k/lib
#SUBDIRS += arch/m68k/kernel arch/m68k/mm arch/m68k/lib
#SUBDIRS += arch/m68k/kernel arch/m68k/mm arch/m68k/lib
ARCHIVES := arch/m68k/kernel/kernel.o arch/m68k/mm/mm.o $(ARCHIVES)
ARCHIVES := arch/m68k/kernel/kernel.o arch/m68k/mm/mm.o $(ARCHIVES)
LIBS += arch/m68k/lib/lib.a
LIBS += arch/m68k/lib/lib.a
ifdef CONFIG_AMIGA
ifdef CONFIG_AMIGA
ARCHIVES := $(ARCHIVES) arch/m68k/amiga/amiga.o
ARCHIVES := $(ARCHIVES) arch/m68k/amiga/amiga.o
SUBDIRS := $(SUBDIRS) arch/m68k/amiga
SUBDIRS := $(SUBDIRS) arch/m68k/amiga
endif
endif
ifdef CONFIG_ATARI
ifdef CONFIG_ATARI
ARCHIVES := $(ARCHIVES) arch/m68k/atari/atari.o
ARCHIVES := $(ARCHIVES) arch/m68k/atari/atari.o
SUBDIRS := $(SUBDIRS) arch/m68k/atari
SUBDIRS := $(SUBDIRS) arch/m68k/atari
endif
endif
ifdef CONFIG_MAC
ifdef CONFIG_MAC
ARCHIVES := $(ARCHIVES) arch/m68k/mac/mac.o
ARCHIVES := $(ARCHIVES) arch/m68k/mac/mac.o
SUBDIRS := $(SUBDIRS) arch/m68k/mac
SUBDIRS := $(SUBDIRS) arch/m68k/mac
endif
endif
# add in console.a after {amiga,atari}.o that need it
# add in console.a after {amiga,atari}.o that need it
ARCHIVES := $(ARCHIVES) arch/m68k/console/console.a
ARCHIVES := $(ARCHIVES) arch/m68k/console/console.a
ifdef CONFIG_FPSP_040
ifdef CONFIG_FPSP_040
ARCHIVES := $(ARCHIVES) arch/m68k/fpsp040/fpsp.o
ARCHIVES := $(ARCHIVES) arch/m68k/fpsp040/fpsp.o
SUBDIRS := $(SUBDIRS) arch/m68k/fpsp040
SUBDIRS := $(SUBDIRS) arch/m68k/fpsp040
endif
endif
ifdef CONFIG_IFPSP_060
ifdef CONFIG_IFPSP_060
ARCHIVES := $(ARCHIVES) arch/m68k/ifpsp060/ifpsp.o
ARCHIVES := $(ARCHIVES) arch/m68k/ifpsp060/ifpsp.o
SUBDIRS := $(SUBDIRS) arch/m68k/ifpsp060
SUBDIRS := $(SUBDIRS) arch/m68k/ifpsp060
endif
endif
MAKEBOOT = $(MAKE) -C arch/$(ARCH)/boot
MAKEBOOT = $(MAKE) -C arch/$(ARCH)/boot
lilo:   vmlinux
lilo:   vmlinux
        if [ -f $(INSTALL_PATH)/vmlinux ]; then mv -f $(INSTALL_PATH)/vmlinux $(INSTALL_PATH)/vmlinux.old; fi
        if [ -f $(INSTALL_PATH)/vmlinux ]; then mv -f $(INSTALL_PATH)/vmlinux $(INSTALL_PATH)/vmlinux.old; fi
        if [ -f $(INSTALL_PATH)/System.map ]; then mv -f $(INSTALL_PATH)/System.map $(INSTALL_PATH)/System.old; fi
        if [ -f $(INSTALL_PATH)/System.map ]; then mv -f $(INSTALL_PATH)/System.map $(INSTALL_PATH)/System.old; fi
        cat vmlinux > $(INSTALL_PATH)/vmlinux
        cat vmlinux > $(INSTALL_PATH)/vmlinux
        cp System.map $(INSTALL_PATH)/System.map
        cp System.map $(INSTALL_PATH)/System.map
        if [ -x /sbin/lilo ]; then /sbin/lilo; else /etc/lilo/install; fi
        if [ -x /sbin/lilo ]; then /sbin/lilo; else /etc/lilo/install; fi
bootstrap:
bootstrap:
        @$(MAKEBOOT) bootstrap
        @$(MAKEBOOT) bootstrap
archclean:
archclean:
        @$(MAKEBOOT) clean
        @$(MAKEBOOT) clean
archdep:
archdep:
        $(MAKEBOOT) dep
        $(MAKEBOOT) dep
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.