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 $**
|
|
|
|
|
#------------------------------------------------------------------------------
|
2026-01-14 13:03:28 +08:00
|
|
|
PROJECTS = FabricInspection.dll testDll.exe
|
2025-07-22 15:51:47 +08:00
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
default: $(PROJECTS)
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
|
2026-01-14 13:03:28 +08:00
|
|
|
FabricInspection.dll: FabricInspection.dpr
|
|
|
|
|
$(DCC)
|
|
|
|
|
|
|
|
|
|
testDll.exe: testDll.dpr
|
|
|
|
|
$(DCC)
|
|
|
|
|
|
2025-07-22 15:51:47 +08:00
|
|
|
|