1 2################################################################################ 3# 4# Copyright (c) 2006-2009 MStar Semiconductor, Inc. 5# All rights reserved. 6# 7# Unless otherwise stipulated in writing, any and all information contained 8# herein regardless in any format shall remain the sole proprietary of 9# MStar Semiconductor Inc. and be kept in strict confidence 10# (��MStar Confidential Information��) by the recipient. 11# Any unauthorized act including without limitation unauthorized disclosure, 12# copying, use, reproduction, sale, distribution, modification, disassembling, 13# reverse engineering and compiling of the contents of MStar Confidential 14# Information is unlawful and strictly prohibited. MStar hereby reserves the 15# rights to any and all damages, losses, costs and expenses resulting therefrom. 16# 17# 18# Makefile used for building DDI 19# 20# 21################################################################################ 22 23ROOT = . 24TRUNK = . 25LIB_DIR_ = ../../../bsp/lib 26INC_DIR_ = ../../../bsp/include 27CHIP = s4le 28 29INSTALL_FILES += \ 30 $(INC_DIR_)/apiCEC.h 31 32OUTLIB = $(TRUNK)/../../../../../DAILEO/Yoga/Chakra2/core/driver/sc/$(CHIP)/ 33IF_H_DIR = $(TRUNK)/../../../../../DAILEO/Yoga/Chakra2/core/api/include 34 35install: 36 cp -f $(LIB_DIR_)/libCEC.a $(OUTLIB)/libcec_a.a 37 chmod 544 $(OUTLIB)/libcec_a.a 38 for i in $(INSTALL_FILES); do \ 39 cp -f $$i $(IF_H_DIR); \ 40 done; 41 42