application
来自「UEStudioPortable.rar」· 代码 · 共 145 行
TXT
145 行
# ------------- Tasking C configuration ------------
# --- general --------------------------------------
# $P - project name
# $Pp - path to project directory
# $Pn - project name
# --- compile --------------------------------------
# $I - input full name
# $Ip - input path
# $In - input name
# $Ie - input extension
# $O - output file
# $Op - path to output file
# $On - output filename (without path)
# $Oe - output extension
# $R - release/debug setting for compiler
# --- build ----------------------------------------
# $T - target full name
# $Tp - target path
# $Tn - target name
# $O - output file
# $Op - path to output file
# $On - output filename (without path)
# $Oe - output extension
# $R - release/debug setting for linker
[Settings]
Target =
Category&01 = DEFAULT RUN CONFIGURATION
Working Directory =.
Command Line Arguments =
Category&02 = COMPILER OPTIONS
Compiler Options = -cs -no -d -ia -a -q -i -pw -V
Linker Options = -i link.lst -c map -b _seg_rom -rs idata -L lib000 -v
HEX Build Options = -t m 7500 -w 7FFFF
IEE Build Options = -d abs
MAP File Options = -n
Debugger=
[SettingsInfo]
Target = Provides a space for you to specify an output file and location of the program that the linker creates.
Working Directory = Provides a space for you to specify the directory in which executing occurs. If you do not specify a directory, executing occurs in the directory where the executable is located.
Command Line Arguments = Provides a space for you to specify command-line arguments you want to pass to the program at startup.
Debugger=Provides a space for you to set the debugger you want to use to debug application.
[Variables]
CPATH = C:\
COPT = $(Compiler Options)
LOPT = $(Linker Options)
compiler = c68000.exe
linker = llink.exe
hexgen = form
ieegen = form695
mapgen = gsmap
[Environment]
PATH = $(CPATH);%PATH%
[General]
TargetExt = .ab
ReleaseOut = .
DebugOut = .
UseFullPaths = 0
UseDosNames = 1
Excludes = $(Excluded Files)
[MakeCommands]
run = Execute Application
debug = Start Debugger
makef = Show Makefile
makehex = Generate HEX file
makeiee = Generate IEE file
makemap = Generate MAP file
[Generate HEX file]
Title = Generate $Tn.hex!
Cmd0 = $(hexgen) $T $(HEX Build Options) -o $Tp$Tn.hex
Depends = $T
ShowWindow = 1
DisplayConsole = 1
[Generate IEE file]
Title = Generate $Tn.iee!
Cmd0 = $(ieegen) $T $(IEE Build Options) -o $Tp$Tn.iee
Depends = $T
ShowWindow = 1
DisplayConsole = 1
[Generate MAP file]
Title = Generate $Tn.map!
Cmd0 = $(mapgen) $T $(MAP Build Options) -o $Tp$Tn.map
Depends = $T
ShowWindow = 1
DisplayConsole = 1
[Execute Application]
Title = Execute $T
Cmd0 = $(Command Line Arguments)
Depends = $T
ShowWindow = 1
DisplayConsole = 1
[FileGroups]
FGO = .ol;
[Build]
Out = $T
Depends = $FGO
Cmd0 = $(linker) $(LOPT) -o $T $FGO
[.C]
Out = $In.ol
ReleaseFlag =
DebugFlag =
Cmd0 = $(compiler) $I -o $O $(COPT) $R
IncFiles = 1
CaseSensitive = 1
IncDirs = .;$(INCLUDE);
IncKeyWords = #include;
Comments = /*.*/.//.eol.
[Start Debugger]
Title=Debug $T
Cmd0=$(Debugger) $T
Depends=$T
ShowWindow=1
[Show Makefile]
Title=Show makefile
Cmd0=uestudio $(UESMAKEFILE)
ShowWindow=1
DisplayConsole=0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?