oplinc.mk

来自「在手机操作系统symbina上使用的一个脚本扩展语言的代码实现,可以参考用于自己」· MK 代码 · 共 48 行

MK
48
字号
# OplInc.mk
# Create OPL source header files.
# Copyright (c) 1999-2002 Symbian Ltd. All Rights Reserved

.SUFFIXES: .OPH .TPH

TARGETDIR=%EPOCROOT%epoc32\wins\c\System\OPL

$(TARGETDIR) :
	@perl -S emkdir.pl "$(TARGETDIR)"

SRCDIR=..\samplesu

$(TARGETDIR)\Const.oph : $(SRCDIR)\Const.tph $(TARGETDIR)
	OPLTRAN -conv $(SRCDIR)\Const.tph -e -o$(TARGETDIR) -q

OPHFILES=\
	$(TARGETDIR)\Const.oph

do_nothing :
	rem do nothing

#
# The targets invoked by bld...
#

MAKMAKE : do_nothing

RESOURCE : $(TARGETDIR) $(OPHFILES)

SAVESPACE : do_nothing

BLD : do_nothing

FREEZE : do_nothing

LIB : do_nothing

CLEANLIB : do_nothing

FINAL : do_nothing

CLEAN : 
	erase $(OPHFILES)

RELEASABLES : 
	@echo $(OPHFILES)

⌨️ 快捷键说明

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