Same code. Use the generic version. The special Makefile treatment is pointless anyway as init_task.o contains only data which is handled by the linker script. So no point on being treated like head text. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Hirokazu Takata <takata@linux-m32r.org> Link: http://lkml.kernel.org/r/20120503085034.756332161@linutronix.de
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			257 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			257 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Makefile for the Linux/M32R kernel.
 | 
						|
#
 | 
						|
 | 
						|
extra-y	:= head.o vmlinux.lds
 | 
						|
 | 
						|
obj-y	:= process.o entry.o traps.o align.o irq.o setup.o time.o \
 | 
						|
	m32r_ksyms.o sys_m32r.o signal.o ptrace.o
 | 
						|
 | 
						|
obj-$(CONFIG_SMP)		+= smp.o smpboot.o
 | 
						|
obj-$(CONFIG_MODULES)		+= module.o
 |