1# 2# (C) Copyright 2000-2004 3# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4# (C) Copyright 2012-2013 5# Eric Jarrige <eric.jarrige@armadeus.org> 6# 7# SPDX-License-Identifier: GPL-2.0+ 8# 9 10include $(TOPDIR)/config.mk 11 12LIB = $(obj)lib$(BOARD).o 13 14COBJS := apf27.o 15SOBJS := lowlevel_init.o 16 17SRCS := $(COBJS:.o=.c) $(SOBJS:.o=.S) 18OBJS := $(addprefix $(obj),$(COBJS)) 19SOBJS := $(addprefix $(obj),$(SOBJS)) 20 21$(LIB): $(obj).depend $(OBJS) $(SOBJS) 22 $(call cmd_link_o_target, $(OBJS) $(SOBJS)) 23 24######################################################################### 25 26include $(SRCTREE)/rules.mk 27 28sinclude $(obj).depend 29 30######################################################################### 31