D7szChenfeng/合同管理(ContractManagement.dll)/ProjectGroup1.bpg

24 lines
813 B
Plaintext
Raw Permalink Normal View History

2025-07-22 15:51:47 +08:00
#------------------------------------------------------------------------------
VERSION = BWS.01
#------------------------------------------------------------------------------
!ifndef ROOT
ROOT = $(MAKEDIR)\..
!endif
#------------------------------------------------------------------------------
MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
DCC = $(ROOT)\bin\dcc32.exe $**
BRCC = $(ROOT)\bin\brcc32.exe $**
#------------------------------------------------------------------------------
2025-07-22 16:53:10 +08:00
PROJECTS = ContractManagement.dll testDll.exe
2025-07-22 15:51:47 +08:00
#------------------------------------------------------------------------------
default: $(PROJECTS)
#------------------------------------------------------------------------------
2025-07-22 16:53:10 +08:00
ContractManagement.dll: ContractManagement.dpr
2025-07-22 15:51:47 +08:00
$(DCC)
2025-07-22 16:53:10 +08:00
testDll.exe: testDll.dpr
2025-07-22 15:51:47 +08:00
$(DCC)