File: objects.mk

package info (click to toggle)
imx-code-signing-tool 3.4.1%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,912 kB
  • sloc: ansic: 10,258; sh: 2,558; python: 391; yacc: 245; makefile: 203; lex: 59
file content (25 lines) | stat: -rw-r--r-- 875 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# SPDX-License-Identifier: BSD-3-Clause
#
# Freescale Semiconductor
# (c) Freescale Semiconductor, Inc. 2011-2015. All rights reserved.
# Copyright 2023 NXP
#
#==============================================================================
#
#    File Name:  objects.mk
#
#    General Description:  This makefile builds a centralized list of all
#                          object files from the objects.mk files
#                          defined for each layer or subcomponent.
#
#==============================================================================

# All library object files to be built are added to $(OBJECTS) by
# Makefile.objects in each subsystem.
OBJECTS :=
OBJECTS_BACKEND :=
OBJECTS_FRONTEND :=
OBJECTS_SRKTOOL :=

# include object files for each subsystem.  Subsystems are defined in init.mk
include $(foreach dir,$(VPATH),$(wildcard $(dir)/objects.mk))