D7myYunxiang/云翔样品仓库/ProjectGroup1.bpg

24 lines
771 B
Plaintext
Raw Permalink Normal View History

2025-01-20 13:04:03 +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-08-22 09:38:54 +08:00
PROJECTS = testDll.exe YPCK.dll
2025-01-20 13:04:03 +08:00
#------------------------------------------------------------------------------
default: $(PROJECTS)
#------------------------------------------------------------------------------
testDll.exe: testDll.dpr
$(DCC)
2025-08-22 09:38:54 +08:00
YPCK.dll: YPCK.dpr
$(DCC)
2025-01-20 13:04:03 +08:00