URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [arch/] [m68k/] [kernel/] [Makefile] - Rev 1275
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).## Note 2! The CFLAGS definitions are now in the main makefile....S.o:$(CC) $(AFLAGS) -traditional -c $< -o $*.oifndef CONFIG_SUN3all: head.o kernel.oelseall: sun3-head.o kernel.oendifO_TARGET := kernel.oexport-objs := setup.o m68k_ksyms.oobj-y := entry.o process.o traps.o ints.o signal.o ptrace.o \sys_m68k.o time.o semaphore.o setup.o m68k_ksyms.oobj-$(CONFIG_PCI) += bios32.ohead.o: head.S m68k_defs.hentry.o: entry.S m68k_defs.hsun3-head.o: sun3-head.S m68k_defs.hm68k_defs.h: m68k_defs.c m68k_defs.headrm -f m68k_defs.dSUNPRO_DEPENDENCIES="m68k_defs.d m68k_defs.h" \$(CC) $(filter-out -MD,$(CFLAGS)) -S m68k_defs.ccp m68k_defs.head m68k_defs.hgrep '^#define' m68k_defs.s >> m68k_defs.hrm m68k_defs.s-include m68k_defs.dinclude $(TOPDIR)/Rules.make
Go to most recent revision | Compare with Previous | Blame | View Log
