| # |
| # (C) Copyright 2010,2011 Nvidia Corporation. |
| # |
| # (C) Copyright 2000-2008 |
| # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| # |
| # SPDX-License-Identifier: GPL-2.0+ |
| # |
| |
| include $(TOPDIR)/config.mk |
| |
| LIB = $(obj)libcputegra-common.o |
| |
| SOBJS += lowlevel_init.o |
| COBJS-y += ap.o board.o sys_info.o timer.o clock.o cache.o |
| |
| SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c) |
| OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS-y)) |
| |
| all: $(obj).depend $(LIB) |
| |
| $(LIB): $(OBJS) |
| $(call cmd_link_o_target, $(OBJS)) |
| |
| ######################################################################### |
| |
| # defines $(obj).depend target |
| include $(SRCTREE)/rules.mk |
| |
| sinclude $(obj).depend |
| |
| ######################################################################### |