iBoot/platform/s8000/dcs/rules.mk

26 lines
700 B
Makefile

# Copyright (C) 2013 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.
#
LOCAL_DIR := $(GET_LOCAL_DIR)
OPTIONS += \
WITH_HW_DCS=1
ALL_OBJS += \
$(LOCAL_DIR)/dcs.o
ifeq ($(SUB_PLATFORM),s8000)
ALL_OBJS += $(LOCAL_DIR)/dcs_init_lib_s8000.o
else ifeq ($(SUB_PLATFORM),s8001)
ALL_OBJS += $(LOCAL_DIR)/dcs_init_lib_s8001.o
else ifeq ($(SUB_PLATFORM),s8003)
ALL_OBJS += $(LOCAL_DIR)/dcs_init_lib_s8003.o
else
$(error "Unrecognized SUB_PLATFORM \"$(SUB_PLATFORM)\"")
endif