move Blackfin cpu object list to respective cpu directories
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
		
							parent
							
								
									d0b01a246d
								
							
						
					
					
						commit
						cc2977acc3
					
				
							
								
								
									
										12
									
								
								Makefile
								
								
								
								
							
							
						
						
									
										12
									
								
								Makefile
								
								
								
								
							| 
						 | 
					@ -185,18 +185,6 @@ endif
 | 
				
			||||||
ifeq ($(CPU),mpc85xx)
 | 
					ifeq ($(CPU),mpc85xx)
 | 
				
			||||||
OBJS += cpu/$(CPU)/resetvec.o
 | 
					OBJS += cpu/$(CPU)/resetvec.o
 | 
				
			||||||
endif
 | 
					endif
 | 
				
			||||||
ifeq ($(CPU),bf533)
 | 
					 | 
				
			||||||
OBJS += cpu/$(CPU)/start1.o	cpu/$(CPU)/interrupt.o	cpu/$(CPU)/cache.o
 | 
					 | 
				
			||||||
OBJS += cpu/$(CPU)/flush.o	cpu/$(CPU)/init_sdram.o
 | 
					 | 
				
			||||||
endif
 | 
					 | 
				
			||||||
ifeq ($(CPU),bf537)
 | 
					 | 
				
			||||||
OBJS += cpu/$(CPU)/start1.o	cpu/$(CPU)/interrupt.o	cpu/$(CPU)/cache.o
 | 
					 | 
				
			||||||
OBJS += cpu/$(CPU)/flush.o	cpu/$(CPU)/init_sdram.o
 | 
					 | 
				
			||||||
endif
 | 
					 | 
				
			||||||
ifeq ($(CPU),bf561)
 | 
					 | 
				
			||||||
OBJS += cpu/$(CPU)/start1.o	cpu/$(CPU)/interrupt.o	cpu/$(CPU)/cache.o
 | 
					 | 
				
			||||||
OBJS += cpu/$(CPU)/flush.o 	cpu/$(CPU)/init_sdram.o
 | 
					 | 
				
			||||||
endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
OBJS := $(addprefix $(obj),$(OBJS))
 | 
					OBJS := $(addprefix $(obj),$(OBJS))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -28,12 +28,12 @@ include $(TOPDIR)/config.mk
 | 
				
			||||||
 | 
					
 | 
				
			||||||
LIB	= $(obj)lib$(CPU).a
 | 
					LIB	= $(obj)lib$(CPU).a
 | 
				
			||||||
 | 
					
 | 
				
			||||||
START	= start.o start1.o interrupt.o cache.o flush.o init_sdram.o
 | 
					SOBJS	= start.o start1.o interrupt.o cache.o flush.o init_sdram.o
 | 
				
			||||||
COBJS	= cpu.o traps.o ints.o serial.o interrupts.o video.o
 | 
					COBJS	= cpu.o traps.o ints.o serial.o interrupts.o video.o
 | 
				
			||||||
 | 
					
 | 
				
			||||||
EXTRA = init_sdram_bootrom_initblock.o
 | 
					EXTRA = init_sdram_bootrom_initblock.o
 | 
				
			||||||
 | 
					
 | 
				
			||||||
SRCS	:= $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
 | 
					SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
 | 
				
			||||||
OBJS	:= $(addprefix $(obj),$(COBJS) $(SOBJS))
 | 
					OBJS	:= $(addprefix $(obj),$(COBJS) $(SOBJS))
 | 
				
			||||||
START	:= $(addprefix $(obj),$(START))
 | 
					START	:= $(addprefix $(obj),$(START))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -28,12 +28,12 @@ include $(TOPDIR)/config.mk
 | 
				
			||||||
 | 
					
 | 
				
			||||||
LIB	= $(obj)lib$(CPU).a
 | 
					LIB	= $(obj)lib$(CPU).a
 | 
				
			||||||
 | 
					
 | 
				
			||||||
START	= start.o start1.o interrupt.o cache.o flush.o init_sdram.o
 | 
					SOBJS	= start.o start1.o interrupt.o cache.o flush.o init_sdram.o
 | 
				
			||||||
COBJS	= cpu.o traps.o ints.o serial.o interrupts.o video.o i2c.o
 | 
					COBJS	= cpu.o traps.o ints.o serial.o interrupts.o video.o i2c.o
 | 
				
			||||||
 | 
					
 | 
				
			||||||
EXTRA = init_sdram_bootrom_initblock.o
 | 
					EXTRA = init_sdram_bootrom_initblock.o
 | 
				
			||||||
 | 
					
 | 
				
			||||||
SRCS	:= $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
 | 
					SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
 | 
				
			||||||
OBJS	:= $(addprefix $(obj),$(COBJS) $(SOBJS))
 | 
					OBJS	:= $(addprefix $(obj),$(COBJS) $(SOBJS))
 | 
				
			||||||
START	:= $(addprefix $(obj),$(START))
 | 
					START	:= $(addprefix $(obj),$(START))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -28,12 +28,12 @@ include $(TOPDIR)/config.mk
 | 
				
			||||||
 | 
					
 | 
				
			||||||
LIB	= $(obj)lib$(CPU).a
 | 
					LIB	= $(obj)lib$(CPU).a
 | 
				
			||||||
 | 
					
 | 
				
			||||||
START	= start.o start1.o interrupt.o cache.o flush.o init_sdram.o
 | 
					SOBJS	= start.o start1.o interrupt.o cache.o flush.o init_sdram.o
 | 
				
			||||||
COBJS	= cpu.o traps.o ints.o serial.o interrupts.o video.o
 | 
					COBJS	= cpu.o traps.o ints.o serial.o interrupts.o video.o
 | 
				
			||||||
 | 
					
 | 
				
			||||||
EXTRA = init_sdram_bootrom_initblock.o
 | 
					EXTRA = init_sdram_bootrom_initblock.o
 | 
				
			||||||
 | 
					
 | 
				
			||||||
SRCS	:= $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
 | 
					SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
 | 
				
			||||||
OBJS	:= $(addprefix $(obj),$(COBJS) $(SOBJS))
 | 
					OBJS	:= $(addprefix $(obj),$(COBJS) $(SOBJS))
 | 
				
			||||||
START	:= $(addprefix $(obj),$(START))
 | 
					START	:= $(addprefix $(obj),$(START))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue