]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/highbank/Makefile
Merge branch 'master' of git://88.191.163.10/u-boot-arm
[people/ms/u-boot.git] / board / highbank / Makefile
CommitLineData
37fc0ed2
RH
1#
2# (C) Copyright 2000-2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
37fc0ed2
RH
6#
7
8include $(TOPDIR)/config.mk
9
10LIB = $(obj)lib$(BOARD).o
11
12COBJS := highbank.o
13
14SRCS := $(COBJS:.o=.c)
15OBJS := $(addprefix $(obj),$(COBJS))
16
17$(LIB): $(obj).depend $(OBJS)
18 $(call cmd_link_o_target, $(OBJS))
19
20clean:
21 rm -f $(OBJS)
22
23distclean: clean
24 rm -f $(LIB) core *.bak $(obj).depend
25
26#########################################################################
27
28# defines $(obj).depend target
29include $(SRCTREE)/rules.mk
30
31sinclude $(obj).depend
32
33#########################################################################