]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/rtc/Makefile
ppc4xx: Add 405GPr based MCU25 board specific files
[people/ms/u-boot.git] / drivers / rtc / Makefile
CommitLineData
6a30c4ca 1#
f9328639 2# (C) Copyright 2001-2006
6a30c4ca
WD
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
24include $(TOPDIR)/config.mk
25
26#CFLAGS += -DDEBUG
27
f9328639 28LIB = $(obj)librtc.a
6a30c4ca 29
f0037c56 30COBJS-y += date.o
b58d8b48 31COBJS-y += bfin_rtc.o
f0037c56
GL
32COBJS-y += ds12887.o
33COBJS-y += ds1302.o
34COBJS-y += ds1306.o
35COBJS-y += ds1307.o
36COBJS-y += ds1337.o
37COBJS-y += ds1374.o
38COBJS-y += ds1556.o
39COBJS-y += ds164x.o
40COBJS-y += ds174x.o
41COBJS-y += ds3231.o
42COBJS-y += m41t11.o
12618278 43COBJS-y += m41t60.o
f0037c56
GL
44COBJS-y += max6900.o
45COBJS-y += m48t35ax.o
46COBJS-y += mc146818.o
47COBJS-y += mk48t59.o
48COBJS-y += mpc5xxx.o
49COBJS-y += mpc8xx.o
50COBJS-y += pcf8563.o
51COBJS-y += s3c24x0_rtc.o
52COBJS-y += rs5c372.o
95c6bc7d 53COBJS-y += rx8025.o
f0037c56 54COBJS-y += mcfrtc.o
9caeaadf 55COBJS-y += x1205.o
6a30c4ca 56
f0037c56 57COBJS := $(COBJS-y)
f9328639
MB
58SRCS := $(COBJS:.o=.c)
59OBJS := $(addprefix $(obj),$(COBJS))
60
6a30c4ca
WD
61all: $(LIB)
62
f9328639 63$(LIB): $(obj).depend $(OBJS)
2b208f53 64 $(AR) $(ARFLAGS) $@ $(OBJS)
6a30c4ca
WD
65
66#########################################################################
67
f9328639
MB
68# defines $(obj).depend target
69include $(SRCTREE)/rules.mk
6a30c4ca 70
f9328639 71sinclude $(obj).depend
6a30c4ca
WD
72
73#########################################################################