URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [uclinux/] [uClinux-2.0.x/] [arch/] [sparc/] [kernel/] [Makefile] - Rev 1775
Go to most recent revision | Compare with Previous | Blame | View Log
# $Id: Makefile,v 1.1.1.1 2001-09-10 07:44:02 simons 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