📄 makefile
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -