makefile

来自「这个是单片机4200的ui程序」· 代码 · 共 52 行

TXT
52
字号
#if 0
#   Start of Zoran Standard Header
#   Copyright (c) 2004 - 2005 Zoran Corporation.
#   
#   
#   All rights reserved.  Proprietary and confidential.
#   
#   DESCRIPTION for makefile
#   Makefile for FireStarter user interface. 
#   
#   NEW HISTORY COMMENT (description must be followed by a blank line)
#   <Enter change description here>

#   ===== HISTORY of changes in //depot/imgeng/sw/se_gw/ui/fs/makefile
#   
#   4/Aug/05 #3  dstrauss  Split into "textui" and "comboui" builds.
#   21/Jan/05    HsinLai   Created
#   
#   End of Zoran Standard Header
#endif
# 

S=../ui

ifeq "$(UIType)" "TextUI"
export CSRCS=$(wildcard $S/fs/common/*.c $S/fs/textui/*.c)
export EXTRA_INCL=$(S)/fs/common,$(S)/fs/textui

include ${SHARED_SUBSYSTEM_MAKEFILE}

$O/%.o: $S/fs/textui/%.c
	${COMPILE_DIRECTORY}	

$O/%.o: $S/fs/common/%.c
	${COMPILE_DIRECTORY}	
endif


ifeq "${UIType}" "ComboUI"
export CSRCS=$(wildcard $S/fs/common/*.c $S/fs/comboui/*.c)
export EXTRA_INCL=$(S)/fs/common,$(S)/fs/comboui

include ${SHARED_SUBSYSTEM_MAKEFILE}

$O/%.o: $S/fs/comboui/%.c
	${COMPILE_DIRECTORY}	

$O/%.o: $S/fs/common/%.c
	${COMPILE_DIRECTORY}	
endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?