Makefile (3f149aa226e39e7f29ca7bb22f8e5bf304206a8f) | Makefile (2c1cfb2db61474040a394962872f4cde613f89fb) |
---|---|
1# 2# Makefile for the linux kernel. 3# 4 5asflags-y := -ansi 6ccflags-y := -Werror 7 8extra-y := head_$(BITS).o | 1# 2# Makefile for the linux kernel. 3# 4 5asflags-y := -ansi 6ccflags-y := -Werror 7 8extra-y := head_$(BITS).o |
9extra-y += init_task.o |
|
9 10# Undefine sparc when processing vmlinux.lds - it is used 11# And teach CPP we are doing $(BITS) builds (for this case) 12CPPFLAGS_vmlinux.lds := -Usparc -m$(BITS) 13extra-y += vmlinux.lds 14 15ifdef CONFIG_FUNCTION_TRACER 16# Do not profile debug and lowlevel utilities --- 5 unchanged lines hidden (view full) --- 22 23obj-$(CONFIG_SPARC32) += entry.o wof.o wuf.o 24obj-$(CONFIG_SPARC32) += etrap_32.o 25obj-$(CONFIG_SPARC32) += rtrap_32.o 26obj-y += traps_$(BITS).o 27 28# IRQ 29obj-y += irq_$(BITS).o | 10 11# Undefine sparc when processing vmlinux.lds - it is used 12# And teach CPP we are doing $(BITS) builds (for this case) 13CPPFLAGS_vmlinux.lds := -Usparc -m$(BITS) 14extra-y += vmlinux.lds 15 16ifdef CONFIG_FUNCTION_TRACER 17# Do not profile debug and lowlevel utilities --- 5 unchanged lines hidden (view full) --- 23 24obj-$(CONFIG_SPARC32) += entry.o wof.o wuf.o 25obj-$(CONFIG_SPARC32) += etrap_32.o 26obj-$(CONFIG_SPARC32) += rtrap_32.o 27obj-y += traps_$(BITS).o 28 29# IRQ 30obj-y += irq_$(BITS).o |
30obj-$(CONFIG_SPARC32) += sun4m_irq.o sun4c_irq.o sun4d_irq.o | 31obj-$(CONFIG_SPARC32) += sun4m_irq.o sun4d_irq.o |
31 32obj-y += process_$(BITS).o 33obj-y += signal_$(BITS).o 34obj-y += sigutil_$(BITS).o 35obj-$(CONFIG_SPARC32) += ioport.o 36obj-y += setup_$(BITS).o 37obj-y += idprom.o 38obj-y += sys_sparc_$(BITS).o --- 83 unchanged lines hidden --- | 32 33obj-y += process_$(BITS).o 34obj-y += signal_$(BITS).o 35obj-y += sigutil_$(BITS).o 36obj-$(CONFIG_SPARC32) += ioport.o 37obj-y += setup_$(BITS).o 38obj-y += idprom.o 39obj-y += sys_sparc_$(BITS).o --- 83 unchanged lines hidden --- |