blob: eb149108ac5f43d1420b795045947e5bef951768 [file] [log] [blame]
Stefan Roeseb79316f2005-08-15 12:31:23 +02001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
Stefan Roeseb79316f2005-08-15 12:31:23 +02005# (C) Copyright 2005
6# Travis B. Sawyer, Sandburst Corporation, tsawyer@sandburst.com
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 as
13# published by the Free Software Foundation; either version 2 of
14# the License, or (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24# MA 02111-1307 USA
25#
26
27include $(TOPDIR)/config.mk
Marian Balakowiczf9328632006-09-01 19:49:50 +020028ifneq ($(OBJTREE),$(SRCTREE))
29$(shell mkdir -p $(obj)../common)
30endif
Stefan Roeseb79316f2005-08-15 12:31:23 +020031
32# TBS: add for debugging purposes
33BUILDUSER := $(shell whoami)
34FORCEBUILD := $(shell rm -f $(LIB) $(BOARD).o)
35
36CFLAGS += -DBUILDUSER='"$(BUILDUSER)"'
37# TBS: end debugging
38
39
Marian Balakowiczf9328632006-09-01 19:49:50 +020040LIB = $(obj)lib$(BOARD).a
Stefan Roeseb79316f2005-08-15 12:31:23 +020041
Marian Balakowiczf9328632006-09-01 19:49:50 +020042COBJS = $(BOARD).o ../common/flash.o ../common/ppc440gx_i2c.o \
Stefan Roeseb79316f2005-08-15 12:31:23 +020043 ../common/sb_common.o
44SOBJS = init.o
45
Marian Balakowiczf9328632006-09-01 19:49:50 +020046SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
47OBJS := $(addprefix $(obj),$(COBJS))
48SOBJS := $(addprefix $(obj),$(SOBJS))
Stefan Roeseb79316f2005-08-15 12:31:23 +020049
50$(LIB): $(OBJS) $(SOBJS)
Wolfgang Denk2b208f52006-10-09 01:02:05 +020051 $(AR) $(ARFLAGS) $@ $(OBJS)
Stefan Roeseb79316f2005-08-15 12:31:23 +020052
53clean:
54 rm -f $(SOBJS) $(OBJS)
55
56distclean: clean
Wolfgang Denk322ef5e2008-07-02 23:53:23 +020057 rm -f $(LIB) core *.bak $(obj).depend
Stefan Roeseb79316f2005-08-15 12:31:23 +020058
59#########################################################################
60
Marian Balakowiczf9328632006-09-01 19:49:50 +020061# defines $(obj).depend target
62include $(SRCTREE)/rules.mk
Stefan Roeseb79316f2005-08-15 12:31:23 +020063
Marian Balakowiczf9328632006-09-01 19:49:50 +020064sinclude $(obj).depend
Stefan Roeseb79316f2005-08-15 12:31:23 +020065
66#########################################################################