blob: 20d7b8624a1c37089880a4f81bd2ebde64456cf4 [file] [log] [blame]
wdenk49822e22004-06-19 21:19:10 +00001#
2# board/mx1ads/Makefile
3#
Marian Balakowiczf9328632006-09-01 19:49:50 +02004# (C) Copyright 2006
5# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6#
wdenk49822e22004-06-19 21:19:10 +00007# (c) Copyright 2004
8# Techware Information Technology, Inc.
9# http://www.techware.com.tw/
10#
11# Ming-Len Wu <minglen_wu@techware.com.tw>
12#
13# This program is free software; you can redistribute it and/or
14# modify it under the terms of the GNU General Public License as
15# published by the Free Software Foundation; either version 2 of
16# the License, or (at your option) any later version.
17#
18# This program is distributed in the hope that it will be useful,
19# but WITHOUT ANY WARRANTY; without even the implied warranty of
20# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21# GNU General Public License for more details.
22#
23# You should have received a copy of the GNU General Public License
24# along with this program; if not, write to the Free Software
25# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26# MA 02111-1307 USA
wdenk2d24a3a2004-06-09 21:50:45 +000027
28include $(TOPDIR)/config.mk
29
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010030LIB = $(obj)lib$(BOARD).o
wdenk2d24a3a2004-06-09 21:50:45 +000031
Marian Balakowiczf9328632006-09-01 19:49:50 +020032COBJS := mx1ads.o syncflash.o
wdenk400558b2005-04-02 23:52:25 +000033SOBJS := lowlevel_init.o
wdenk2d24a3a2004-06-09 21:50:45 +000034
Marian Balakowiczf9328632006-09-01 19:49:50 +020035SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
36OBJS := $(addprefix $(obj),$(COBJS))
37SOBJS := $(addprefix $(obj),$(SOBJS))
38
39$(LIB): $(obj).depend $(OBJS) $(SOBJS)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010040 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
wdenk2d24a3a2004-06-09 21:50:45 +000041
42clean:
43 rm -f $(SOBJS) $(OBJS)
44
45distclean: clean
Wolfgang Denkc8a3b102008-07-02 23:49:18 +020046 rm -f $(LIB) core *.bak $(obj).depend
wdenk2d24a3a2004-06-09 21:50:45 +000047
48#########################################################################
49
Marian Balakowiczf9328632006-09-01 19:49:50 +020050# defines $(obj).depend target
51include $(SRCTREE)/rules.mk
wdenk2d24a3a2004-06-09 21:50:45 +000052
Marian Balakowiczf9328632006-09-01 19:49:50 +020053sinclude $(obj).depend
wdenk2d24a3a2004-06-09 21:50:45 +000054
55#########################################################################