################################################################################ # # Copyright (c) 2006-2009 MStar Semiconductor, Inc. # All rights reserved. # # Unless otherwise stipulated in writing, any and all information contained # herein regardless in any format shall remain the sole proprietary of # MStar Semiconductor Inc. and be kept in strict confidence # (ˇ§MStar Confidential Informationˇ¨) by the recipient. # Any unauthorized act including without limitation unauthorized disclosure, # copying, use, reproduction, sale, distribution, modification, disassembling, # reverse engineering and compiling of the contents of MStar Confidential # Information is unlawful and strictly prohibited. MStar hereby reserves the # rights to any and all damages, losses, costs and expenses resulting therefrom. # # # Makefile used for building DDI # # ################################################################################ ROOT = . TRUNK = . LIB_DIR_ = ../../../lib/t2_nos/debug #INC_DIR_ = ../../../project/t2_nos/bsp/include INC_DIR_ = . CHIP = s4le INSTALL_FILES += \ $(INC_DIR_)/apiXC_Ace.h \ OUTLIB = $(TRUNK)/../../../../../DAILEO/Yoga/Chakra2/core/drv_bsp/t2_nos/lib/ IF_H_DIR = $(TRUNK)/../../../../../DAILEO/Yoga/Chakra2/core/drv_bsp/t2_nos/include install: cp -f $(LIB_DIR_)/libACE.a $(OUTLIB)/libACE.a chmod 544 $(OUTLIB)/libACE.a for i in $(INSTALL_FILES); do \ cp -f $$i $(IF_H_DIR); \ done;