blob: b13d9d446fb923b7540c6835ff64ef036445bd13 [file] [log] [blame]
Niklaus Gigerac982ea2007-07-27 11:28:44 +02001#
2# (C) Copyright 2007 Netstal Maschinen AG
3# Niklaus Giger (ng@netstal.com)
4#
5# This program is free software; you can redistribute it and/or
6# modify it under the terms of the GNU General Public License as
7# published by the Free Software Foundation; either version 2 of
8# the License, or (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
18# MA 02111-1307 USA
19#
20
21include $(TOPDIR)/config.mk
22
23LIB = $(obj)lib$(BOARD).a
24
Niklaus Giger055606b2008-01-16 18:39:20 +010025vpath fixed_sdram.c ../common
Niklaus Giger0e192092007-08-15 12:14:23 +020026vpath hcu_flash.c ../common
Niklaus Giger055606b2008-01-16 18:39:20 +010027vpath nm_bsp.c ../common
Niklaus Giger0e192092007-08-15 12:14:23 +020028
29# NOBJS : Netstal common objects
Stefan Roeseba52be32008-01-17 14:29:04 +010030NOBJS = ../common/fixed_sdram.o ../common/hcu_flash.o ../common/nm_bsp.o
Niklaus Giger0e192092007-08-15 12:14:23 +020031COBJS = $(BOARD).o
Niklaus Gigerac982ea2007-07-27 11:28:44 +020032SOBJS =
33
Stefan Roeseba52be32008-01-17 14:29:04 +010034SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) $(NOBJS:.o=.c)
Niklaus Gigerac982ea2007-07-27 11:28:44 +020035OBJS := $(addprefix $(obj),$(COBJS))
Niklaus Giger0e192092007-08-15 12:14:23 +020036NOBJS := $(addprefix $(obj),$(NOBJS))
Niklaus Gigerac982ea2007-07-27 11:28:44 +020037SOBJS := $(addprefix $(obj),$(SOBJS))
38
Niklaus Giger0e192092007-08-15 12:14:23 +020039$(LIB): $(OBJS) $(SOBJS) $(NOBJS)
40 $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS) $(NOBJS)
Niklaus Gigerac982ea2007-07-27 11:28:44 +020041
42clean:
43 rm -f $(SOBJS) $(OBJS)
44
45distclean: clean
46 rm -f $(LIB) core *.bak .depend
47
48#########################################################################
49
50# defines $(obj).depend target
51include $(SRCTREE)/rules.mk
52
53sinclude $(obj).depend
54
55#########################################################################