# /*****************************************************************************
#* Ȩ(C) 2013 ͨѶɷ޹˾
#* 
#* ļ: Makefile
#* ļʶ: Makefile
#* ժҪ: ϵͳsup
#* ʹ÷:     
#* 
#* ޸        汾      ޸ı       ޸        ޸
#* -----------------------------------------------------------------------------
#* 2013/01/01      V1.0        001            P98G          
#* 
# *****************************************************************************/

include $(PRJ_PATH)/config/project.mk

#===============================================================================
#·
#===============================================================================
_SUBSYS_NAME = plat_sup

_SUBSYS_LIB_PATH = $(PLAT_LIB_INTERNAL_PATH)

_ALL_MDLS = 
_ALL_OBJECTS = 

MDL_PATH = $(PLAT_PATH)/src/oss/sup/src

#===============================================================================
#SUPģ
#===============================================================================
sup:
	@$(GNUMAKE) --no-print-directory  $(MAKEOPTS) -C $(MDL_PATH)
supclean:
	@$(GNUMAKE) --no-print-directory  $(MAKEOPTS) -C $(MDL_PATH) clean

_ALL_MDLS += sup 
_ALL_OBJECTS += $(wildcard $(OBJ_PATH)/plat/oss/sup/*.o) 

ifeq ($(USE_VDD),yes)
_ALL_OBJECTS += $(wildcard $(OBJ_PATH)/plat/drv/vdd/*.o)
endif

#===============================================================================
# 
#===============================================================================
include $(FRAME_PATH)/rules/lib_rules.mk

