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

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [arch/] [sparc/] [kernel/] [Makefile] - Rev 1765

Go to most recent revision | Compare with Previous | Blame | View Log

# $Id: Makefile,v 1.1 2005-12-20 09:50:43 jcastillo Exp $
# Makefile for the linux kernel.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile...

ifdef SMP

.S.s:
        $(CPP) -D__ASSEMBLY__ $(AFLAGS) -ansi $< -o $*.s

.S.o:
        $(CC) -D__ASSEMBLY__ $(AFLAGS) -ansi -c $< -o $*.o


else

.S.s:
        $(CPP) -D__ASSEMBLY__ -ansi $< -o $*.s

.S.o:
        $(CC) -D__ASSEMBLY__ -ansi -c $< -o $*.o


endif

all: kernel.o head.o

O_TARGET := kernel.o
IRQ_OBJS := irq.o sun4m_irq.o sun4c_irq.o
O_OBJS   := entry.o wof.o wuf.o etrap.o rtrap.o switch.o traps.o ${IRQ_OBJS} \
            process.o signal.o ioport.o setup.o idprom.o \
            sys_sparc.o sunos_asm.o sparc-stub.o systbls.o sys_sunos.o  \
            sunos_ioctl.o time.o windows.o cpu.o devices.o ksyms.o \
            sclow.o solaris.o tadpole.o tick14.o ptrace.o

ifdef SMP
O_OBJS += trampoline.o smp.o rirq.o
endif

ifdef CONFIG_SUN_AUXIO
O_OBJS += auxio.o
endif

all: kernel.o head.o

ifdef SMP

head.o: head.S
        $(CC) -D__ASSEMBLY__ $(AFLAGS) -ansi -c $*.S -o $*.o

else

head.o: head.S
        $(CC) -D__ASSEMBLY__ -ansi -c $*.S -o $*.o

endif

include $(TOPDIR)/Rules.make

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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