blob: cb6c0d21b79ff849731c270e3d1d799a4c91a03c [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#
2# (C) Copyright 2009
3# Texas Instruments, <www.ti.com>
4#
5# (C) Copyright 2000, 2001, 2002
6# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7#
8# See file CREDITS for list of people who contributed to this
9# project.
10#
11# This program is free software; you can redistribute it and/or
12# modify it under the terms of the GNU General Public License
13# version 2 as published by the Free Software Foundation.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23# MA 02111-1307 USA
24#
25
26include $(TOPDIR)/config.mk
27
28LIB = lib$(BOARD).a
29
30OBJS := zx297520v3.o
31
32$(LIB): $(OBJS) $(SOBJS)
33 $(AR) crv $@ $^
34
35clean:
36 rm -f $(SOBJS) $(OBJS)
37
38distclean: clean
39 rm -f $(LIB) core *.bak .depend
40
41#########################################################################
42-include .depend
43
44#########################################################################