URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [uclinux/] [uClinux-2.0.x/] [arch/] [armnommu/] [kernel/] [Makefile] - Rev 1765
Go to most recent revision | Compare with Previous | Blame | View Log
#
# 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).
HEAD_OBJ = head-$(PROCESSOR).o
ENTRY_OBJ = entry-$(PROCESSOR).o
O_TARGET := kernel.o
O_OBJS := $(ENTRY_OBJ) ioport.o irq.o process.o ptrace.o signal.o sys_arm.o time.o traps.o
#D_OBJS += ioport.o irq.o process.o ptrace.o signal.o sys_arm.o time.o traps.o
all: kernel.o $(HEAD_OBJ)
ifeq ($(CONFIG_MODULES),y)
OX_OBJS = armksyms.o
else
O_OBJS += armksyms.o
endif
ifdef CONFIG_ARCH_ACORN
O_OBJS += setup.o ecard.o iic.o dma.o
ifdef CONFIG_ARCH_ARC
O_OBJS += oldlatches.o
endif
O_OBJS += dma-$(MACHINE).o
endif
ifeq ($(MACHINE),ebsa110)
O_OBJS += setup-ebsa110.o dma.o dma-dummy.o
endif
ifeq ($(MACHINE),nexuspci)
O_OBJS += setup-ebsa110.o
endif
ifeq ($(MACHINE),trio)
O_OBJS += setup.o dma.o dma-dummy.o
D_OBJS = setup.o
endif
$(HEAD_OBJ): $(HEAD_OBJ:.o=.S)
$(CC) -D__ASSEMBLY__ -g -traditional -c $(HEAD_OBJ:.o=.S) -o $@
$(ENTRY_OBJ): $(ENTRY_OBJ:.o=.S)
$(CC) $(CFLAGS) -g -D__ASSEMBLY__ -c $(ENTRY_OBJ:.o=.S) -o $@
include $(TOPDIR)/Rules.make
$(ENTRY_OBJ): ../lib/constants.h
.PHONY: ../lib/constants.h
../lib/constants.h:
$(MAKE) -C ../lib constants.h
Go to most recent revision | Compare with Previous | Blame | View Log