makefiledelphi.mak

来自「HID controller package containing source」· MAK 代码 · 共 33 行

MAK
33
字号
!ifndef ROOT
ROOT = $(MAKEDIR)
!endif
#---------------------------------------------------------------------------------------------------
DCC  = $(ROOT)\dcc32.exe -q -w -m
#---------------------------------------------------------------------------------------------------
default: \
BasicDemo.exe \
CollectionDemo.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 ..\..

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 + -
显示快捷键?