Makefile (716ebf436c9e43df6740e0172f6b2a81ddbf1b8e) | Makefile (272cc70b211e945e4413122aa73868f6ada732a5) |
---|---|
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 --- 11 unchanged lines hidden (view full) --- 20# Foundation, Inc., 59 Temple Place, Suite 330, Boston, 21# MA 02111-1307 USA 22# 23 24include $(TOPDIR)/config.mk 25 26LIB := $(obj)libmmc.a 27 | 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 --- 11 unchanged lines hidden (view full) --- 20# Foundation, Inc., 59 Temple Place, Suite 330, Boston, 21# MA 02111-1307 USA 22# 23 24include $(TOPDIR)/config.mk 25 26LIB := $(obj)libmmc.a 27 |
28COBJS-$(CONFIG_GENERIC_MMC) += mmc.o |
|
28COBJS-$(CONFIG_ATMEL_MCI) += atmel_mci.o 29COBJS-$(CONFIG_BFIN_SDH) += bfin_sdh.o 30COBJS-$(CONFIG_OMAP3_MMC) += omap3_mmc.o 31 32COBJS := $(COBJS-y) 33SRCS := $(COBJS:.o=.c) 34OBJS := $(addprefix $(obj),$(COBJS)) 35 --- 13 unchanged lines hidden --- | 29COBJS-$(CONFIG_ATMEL_MCI) += atmel_mci.o 30COBJS-$(CONFIG_BFIN_SDH) += bfin_sdh.o 31COBJS-$(CONFIG_OMAP3_MMC) += omap3_mmc.o 32 33COBJS := $(COBJS-y) 34SRCS := $(COBJS:.o=.c) 35OBJS := $(addprefix $(obj),$(COBJS)) 36 --- 13 unchanged lines hidden --- |