Makefile (96764df1b47ddebfb50fadf5af72530b07b5fc89) | Makefile (e1dbdd81523c7c7de1ac5dee03dd9e4587e808af) |
---|---|
1# 2# Copyright 2009-2011 Freescale Semiconductor, Inc. 3# 4# See file CREDITS for list of people who contributed to this 5# project. 6# 7# This program is free software; you can redistribute it and/or 8# modify it under the terms of the GNU General Public License as --- 32 unchanged lines hidden (view full) --- 41COBJS-$(CONFIG_P1023) += p1023.o 42# The P204x, P304x, and P5020 are the same 43COBJS-$(CONFIG_PPC_P2041) += p5020.o 44COBJS-$(CONFIG_PPC_P3041) += p5020.o 45COBJS-$(CONFIG_PPC_P4080) += p4080.o 46COBJS-$(CONFIG_PPC_P5020) += p5020.o 47COBJS-$(CONFIG_PPC_P5040) += p5040.o 48COBJS-$(CONFIG_PPC_T4240) += t4240.o | 1# 2# Copyright 2009-2011 Freescale Semiconductor, Inc. 3# 4# See file CREDITS for list of people who contributed to this 5# project. 6# 7# This program is free software; you can redistribute it and/or 8# modify it under the terms of the GNU General Public License as --- 32 unchanged lines hidden (view full) --- 41COBJS-$(CONFIG_P1023) += p1023.o 42# The P204x, P304x, and P5020 are the same 43COBJS-$(CONFIG_PPC_P2041) += p5020.o 44COBJS-$(CONFIG_PPC_P3041) += p5020.o 45COBJS-$(CONFIG_PPC_P4080) += p4080.o 46COBJS-$(CONFIG_PPC_P5020) += p5020.o 47COBJS-$(CONFIG_PPC_P5040) += p5040.o 48COBJS-$(CONFIG_PPC_T4240) += t4240.o |
49COBJS-$(CONFIG_PPC_B4420) += b4860.o |
|
49COBJS-$(CONFIG_PPC_B4860) += b4860.o 50endif 51 52COBJS := $(COBJS-y) 53SRCS := $(COBJS:.o=.c) 54OBJS := $(addprefix $(obj),$(COBJS)) 55 56all: $(LIB) 57 58$(LIB): $(obj).depend $(OBJS) 59 $(call cmd_link_o_target, $(OBJS)) 60 61######################################################################### 62 63include $(SRCTREE)/rules.mk 64 65sinclude $(obj).depend 66 67######################################################################### | 50COBJS-$(CONFIG_PPC_B4860) += b4860.o 51endif 52 53COBJS := $(COBJS-y) 54SRCS := $(COBJS:.o=.c) 55OBJS := $(addprefix $(obj),$(COBJS)) 56 57all: $(LIB) 58 59$(LIB): $(obj).depend $(OBJS) 60 $(call cmd_link_o_target, $(OBJS)) 61 62######################################################################### 63 64include $(SRCTREE)/rules.mk 65 66sinclude $(obj).depend 67 68######################################################################### |