makefiledelphi.mak

来自「human interface devices.zip 一套组件」· MAK 代码 · 共 53 行

MAK
53
字号
!ifndef ROOT
ROOT = $(MAKEDIR)
!endif
#---------------------------------------------------------------------------------------------------
DCC  = $(ROOT)\dcc32.exe -q -w -m
#---------------------------------------------------------------------------------------------------
default: \
BasicDemo.exe \
CollectionDemo.exe \
IOWarrior.exe \
IOIRWarrior.exe \
LCDDemo.exe \
SimpleHIDWrite.exe \
UsagesDemo.exe

#---------------------------------------------------------------------------------------------------

BasicDemo.exe: Delphi\BasicDemo\BasicDemo.dpr
  cd Delphi\BasicDemo
  $(DCC) $&.dpr
  cd ..\..

CollectionDemo.exe: Delphi\CollectionDemo\CollectionDemo.dpr
  cd Delphi\CollectionDemo
  $(DCC) $&.dpr
  cd ..\..

IOWarrior.exe: Delphi\IO-WarriorDemo\IOWarrior.dpr
  cd Delphi\IO-WarriorDemo
  $(DCC) $&.dpr
  cd ..\..

IOIRWarrior.exe: Delphi\IO-WarriorIRDemo\IOIRWarrior.dpr
  cd Delphi\IO-WarriorIRDemo
  $(DCC) $&.dpr
  cd ..\..

LCDDemo.exe: Delphi\IO-WarriorLCDDemo\LCDDemo.dpr
  cd Delphi\IO-WarriorLCDDemo
  $(DCC) $&.dpr
  cd ..\..

SimpleHIDWrite.exe: Delphi\ReadWriteDemo\SimpleHIDWrite.dpr
  cd Delphi\ReadWriteDemo
  $(DCC) $&.dpr
  cd ..\..

UsagesDemo.exe: Delphi\UsagesDemo\UsagesDemo.dpr
  cd Delphi\UsagesDemo
  $(DCC) $&.dpr
  cd ..\..

⌨️ 快捷键说明

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