]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/logicpd/zoom2/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / logicpd / zoom2 / Makefile
CommitLineData
376aee78
TR
1#
2# (C) Copyright 2000, 2001, 2002
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
376aee78
TR
6#
7
8include $(TOPDIR)/config.mk
9
6d8962e8 10LIB = $(obj)lib$(BOARD).o
376aee78 11
83ae698f
TR
12COBJS-y := $(BOARD).o
13COBJS-y += debug_board.o
14COBJS-y += zoom2_serial.o
15COBJS-$(CONFIG_STATUS_LED) += led.o
376aee78 16
83ae698f 17COBJS := $(sort $(COBJS-y))
376aee78
TR
18SRCS := $(COBJS:.o=.c)
19OBJS := $(addprefix $(obj),$(COBJS))
20
21$(LIB): $(obj).depend $(OBJS)
6d8962e8 22 $(call cmd_link_o_target, $(OBJS))
376aee78 23
376aee78
TR
24#########################################################################
25
26# defines $(obj).depend target
27include $(SRCTREE)/rules.mk
28
29sinclude $(obj).depend
30
31#########################################################################