Update of /cvsroot/linuxconsole/ruby/linux/arch/parisc/kernel
In directory usw-pr-cvs1:/tmp/cvs-serv23928/linux/arch/parisc/kernel
Modified Files:
Makefile
Log Message:
Synced to 2.5.19
Index: Makefile
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/linux/arch/parisc/kernel/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Makefile 25 May 2002 20:31:59 -0000 1.2
+++ Makefile 3 Jun 2002 22:44:56 -0000 1.3
@@ -1,26 +1,20 @@
#
# 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...
-all: kernel.o init_task.o pdc_cons.o process.o head.o
-O_TARGET = kernel.o
+O_TARGET := kernel.o
+EXTRA_TARGETS := head.o init_task.o process.o pdc_cons.o
# Object file lists.
-obj-y += cache.o setup.o traps.o time.o irq.o \
- syscall.o entry.o sys_parisc.o pdc.o ptrace.o hardware.o \
- inventory.o drivers.o semaphore.o pa7300lc.o pci-dma.o \
- signal.o hpmc.o \
- real1.o real2.o led.o parisc_ksyms.o
+obj-y := cache.o setup.o traps.o time.o irq.o \
+ syscall.o entry.o sys_parisc.o pdc.o ptrace.o hardware.o \
+ inventory.o drivers.o semaphore.o pa7300lc.o pci-dma.o \
+ signal.o hpmc.o \
+ real1.o real2.o led.o parisc_ksyms.o
export-objs := parisc_ksyms.o
-
obj-$(CONFIG_PCI) += pci.o
obj-$(CONFIG_PCI_LBA) += lba_pci.o
# I/O SAPIC is also on IA64 platforms.
@@ -31,6 +25,6 @@
# obj-$(CONFIG_IOMMU_CCIO) += ccio-rm-dma.o
obj-$(CONFIG_IOMMU_CCIO) += ccio-dma.o
-EXTRA_AFLAGS := -traditional
+EXTRA_AFLAGS := -traditional
include $(TOPDIR)/Rules.make
|