TsiChungLiew | 72f56ad | 2008-01-15 13:54:09 -0600 | [diff] [blame] | 1 | # |
| 2 | # (C) Copyright 2006 |
| 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
| 5 | # See file CREDITS for list of people who contributed to this |
| 6 | # project. |
| 7 | # |
| 8 | # This program is free software; you can redistribute it and/or |
| 9 | # modify it under the terms of the GNU General Public License as |
| 10 | # published by the Free Software Foundation; either version 2 of |
| 11 | # the License, or (at your option) any later version. |
| 12 | # |
| 13 | # This program is distributed in the hope that it will be useful, |
| 14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | # GNU General Public License for more details. |
| 17 | # |
| 18 | # You should have received a copy of the GNU General Public License |
| 19 | # along with this program; if not, write to the Free Software |
| 20 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | # MA 02111-1307 USA |
| 22 | # |
| 23 | |
| 24 | include $(TOPDIR)/config.mk |
| 25 | |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 26 | LIB := $(obj)libdma.o |
TsiChungLiew | 72f56ad | 2008-01-15 13:54:09 -0600 | [diff] [blame] | 27 | |
Jean-Christophe PLAGNIOL-VILLARD | 88f57e0 | 2008-08-13 01:40:39 +0200 | [diff] [blame] | 28 | COBJS-$(CONFIG_FSLDMAFEC) += MCD_tasksInit.o MCD_dmaApi.o MCD_tasks.o |
Marek Vasut | 31650d6 | 2011-11-08 23:18:15 +0000 | [diff] [blame] | 29 | COBJS-$(CONFIG_APBH_DMA) += apbh_dma.o |
Peter Tyser | 017f11f | 2009-06-30 17:15:40 -0500 | [diff] [blame] | 30 | COBJS-$(CONFIG_FSL_DMA) += fsl_dma.o |
Simon Schwarz | 4c4bb19 | 2011-09-28 05:00:26 +0000 | [diff] [blame] | 31 | COBJS-$(CONFIG_OMAP3_DMA) += omap3_dma.o |
TsiChungLiew | 72f56ad | 2008-01-15 13:54:09 -0600 | [diff] [blame] | 32 | |
| 33 | COBJS := $(COBJS-y) |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 34 | SRCS := $(COBJS:.o=.c) |
| 35 | OBJS := $(addprefix $(obj),$(COBJS)) |
TsiChungLiew | 72f56ad | 2008-01-15 13:54:09 -0600 | [diff] [blame] | 36 | |
| 37 | all: $(LIB) |
| 38 | |
| 39 | $(LIB): $(obj).depend $(OBJS) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 40 | $(call cmd_link_o_target, $(OBJS)) |
TsiChungLiew | 72f56ad | 2008-01-15 13:54:09 -0600 | [diff] [blame] | 41 | |
| 42 | ######################################################################### |
| 43 | |
| 44 | # defines $(obj).depend target |
| 45 | include $(SRCTREE)/rules.mk |
| 46 | |
| 47 | sinclude $(obj).depend |
| 48 | |
| 49 | ######################################################################### |