iBoot/lib/nonce/library.mk

28 lines
707 B
Makefile
Raw Normal View History

2023-07-08 13:03:17 -07:00
# Copyright (C) 2014 Apple Inc. All rights reserved.
#
# This document is the property of Apple Inc.
# It is considered confidential and proprietary.
#
# This document may not be reproduced or transmitted in any form,
# in whole or in part, without the express written permission of
# Apple Inc.
#
LIBNONCE_DIR := $(GET_LOCAL_DIR)
LIBNONCE_BUILD := $(call TOLIBDIR,$(LIBNONCE_DIR)/LIBNONCE.a)
COMMONLIBS += LIBNONCE
# Only process the remainder of the makefile if we are building libraries
#
ifeq ($(MAKEPHASE),libraries)
LIBNONCE_OBJS := $(LIBNONCE_DIR)/nonce.o
LIBNONCE_OBJS := $(call TOLIBOBJDIR,$(LIBNONCE_OBJS))
ALL_DEPS += $(LIBNONCE_OBJS:%o=%d)
$(LIBNONCE_BUILD): $(LIBNONCE_OBJS)
endif