]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/palmtreo680/Makefile
pxa: add support for palmtreo680 board
[people/ms/u-boot.git] / board / palmtreo680 / Makefile
CommitLineData
0dc0e846
MD
1#
2# Palm Treo680 Support
3#
4# Copyright (C) 2013 Mike Dunn <mikedunn@newsguy.com>
5#
6# This file is released under the terms of GPL v2 and any later version.
7# See the file COPYING in the root directory of the source tree for details.
8
9include $(TOPDIR)/config.mk
10
11LIB = $(obj)lib$(BOARD).o
12
13COBJS := palmtreo680.o
14
15SRCS := $(COBJS:.o=.c)
16OBJS := $(addprefix $(obj),$(COBJS))
17
18$(LIB): $(obj).depend $(OBJS)
19 $(call cmd_link_o_target, $(OBJS))
20
21clean:
22 rm -f $(OBJS)
23
24distclean: clean
25 rm -f $(LIB) core *.bak $(obj).depend
26
27#########################################################################
28
29# defines $(obj).depend target
30include $(SRCTREE)/rules.mk
31
32sinclude $(obj).depend
33
34#########################################################################