]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/atmel/atstk1000/Makefile
Merge branch 'master' of git://www.denx.de/git/u-boot-cfi-flash
[karo-tx-uboot.git] / board / atmel / atstk1000 / Makefile
1 #
2 # (C) Copyright 2001-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # Copyright (C) 2005-2006 Atmel Corporation
6 #
7 # SPDX-License-Identifier:      GPL-2.0+
8
9 include $(TOPDIR)/config.mk
10
11 LIB                     := $(obj)lib$(BOARD).o
12
13 COBJS-y                 += $(BOARD).o
14
15 SRCS                    := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
16 OBJS                    := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
17
18 $(LIB): $(obj).depend $(OBJS)
19         $(call cmd_link_o_target, $(OBJS))
20
21 #########################################################################
22
23 # defines $(obj).depend target
24 include $(SRCTREE)/rules.mk
25
26 sinclude $(obj).depend
27
28 #########################################################################