⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makejcldcp4bcb.mak

📁 East make Tray Icon in delphi
💻 MAK
字号:
#-------------------------------------------------------------------------------
# DCP files creation for JEDI Code Library
#-------------------------------------------------------------------------------

!ifndef ROOT
ROOT = $(MAKEDIR)\..
!endif

!ifndef JCLROOT
JCLROOT = ..\..\..\jcl
!endif

!ifndef DCPDIR
DCPDIR = $(ROOT)\Projects\bpl
!endif

!ifndef VERSION
!error You must specify a VERSION: make -DVERSION=6
!endif

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

JVCLPACKAGEDIR = ..
JVCLDIR = $(JVCLPACKAGEDIR)\..
DEVTOOLS = $(JVCLDIR)\devtools
DEVTOOLS_BACK = ..\packages\bin
PACKAGEDIR = $(JCLROOT)\packages\c$(VERSION)

MAKE = "$(ROOT)\bin\make.exe" -l+
#-$(MAKEFLAGS)
DCC = "$(ROOT)\bin\dcc32.exe" -Q -M

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

default: \
  Templates \
  pg.exe \
  Compile \
  Clean

Bpg2Make.exe:
	@echo [Compiling: Bpg2Make.exe]
	cd $(DEVTOOLS)
	$(MAKE) $(QUIET) -f makefile.mak -s Bpg2Make.exe
	cd $(DEVTOOLS_BACK)

pg.exe: Templates
	@echo [Compiling: pg.exe]
	cd $(DEVTOOLS)
	$(MAKE) $(QUIET) -f makefile.mak -s pg.exe
	cd $(DEVTOOLS_BACK)
	#
	@echo [Generating: Packages]
	$(DEVTOOLS)\bin\pg.exe -m=JCL -p="$(JCLROOT)\Packages" -t=c$(VERSION) -x=$(DEVTOOLS)\bin\pgEdit.xml

Templates:
	@echo [Copying: Templates]
	if NOT EXIST "$(PACKAGEDIR)\template.dpk"  copy /Y jcldcpdpk$(VERSION).tpl "$(PACKAGEDIR)\template.dpk"
	# create template.cfg
	@echo -I"..\..\source;..\..\source\common" > "$(PACKAGEDIR)\template.cfg"
	@echo -U"..\..\source\common;..\..\source\windows" >> "$(PACKAGEDIR)\template.cfg"
	@echo -U"..\..\source\vcl;..\..\source\visclx" >> "$(PACKAGEDIR)\template.cfg"
	@echo -U"$(ROOT)\Lib\Obj;$(DCPDIR)" >> "$(PACKAGEDIR)\template.cfg"
	@echo -LN"$(DCPDIR)" >> "$(PACKAGEDIR)\template.cfg"
	@echo -N"$(JCLROOT)\lib\c$(VERSION)" >> "$(PACKAGEDIR)\template.cfg"
	@echo -O"$(JCLROOT)\lib\c$(VERSION)\obj" >> "$(PACKAGEDIR)\template.cfg"

CompileJclDcpPackage:
	echo [Compiling: $(FILE)]
	$(DCC) -B "$(FILE)"

Compile:
	@echo [Compiling: Packages]
	@cd $(PACKAGEDIR)
	for %f in ("C*.dpk") do $(MAKE) -f "$(JVCLROOT)\packages\bin\MakeJCLDcp4BCB.mak" $(QUIET) "-DFILE=%f" CompileJclDcpPackage

Clean:
	@echo [Cleaning...]
	@cd $(PACKAGEDIR)
	-del /q template.* >NUL
	-del /q C*.dcp >NUL
	-del /q C*.bpl >NUL
	-del /q C*.mak >NUL
	-del /q C*.dpk >NUL
	-del /q *.dcu >NUL
	-del /q C*.cfg >NUL

⌨️ 快捷键说明

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