NO HAY CÓDIGO FUENTE git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.TRichView@1 b34d35ef-135b-4489-b9d1-9916e9c25524
63 lines
2.3 KiB
Plaintext
63 lines
2.3 KiB
Plaintext
#------------------------------------------------------------------------------
|
|
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 $**
|
|
#------------------------------------------------------------------------------
|
|
PROJECTS = Tutorial_1_1.exe Tutorial_1_2.exe Tutorial_1_3.exe Tutorial_1_4.exe \
|
|
Tutorial_1_5.exe Tutorial_2_1.exe Tutorial_2_2.exe Tutorial_2_3.exe \
|
|
Tutorial_2_4.exe Tutorial_2_5.exe Tutorial_2_6.exe Tutorial_2_7.exe \
|
|
Tutorial_2_8.exe Tutorial_2_9.exe
|
|
#------------------------------------------------------------------------------
|
|
default: $(PROJECTS)
|
|
#------------------------------------------------------------------------------
|
|
|
|
Tutorial_1_1.exe: Tutorial\1 Building a Document\1 Hello World\Tutorial_1_1.dpr
|
|
$(DCC)
|
|
|
|
Tutorial_1_2.exe: Tutorial\1 Building a Document\2 Text\Tutorial_1_2.dpr
|
|
$(DCC)
|
|
|
|
Tutorial_1_3.exe: Tutorial\1 Building a Document\3 Images\Tutorial_1_3.dpr
|
|
$(DCC)
|
|
|
|
Tutorial_1_4.exe: Tutorial\1 Building a Document\4 Controls\Tutorial_1_4.dpr
|
|
$(DCC)
|
|
|
|
Tutorial_1_5.exe: Tutorial\1 Building a Document\5 Bullets\Tutorial_1_5.dpr
|
|
$(DCC)
|
|
|
|
Tutorial_2_1.exe: Tutorial\2 Items-Checkpoints-Tags-Hypertext\1 Info about Items\Tutorial_2_1.dpr
|
|
$(DCC)
|
|
|
|
Tutorial_2_2.exe: Tutorial\2 Items-Checkpoints-Tags-Hypertext\2 Checkpoints\Tutorial_2_2.dpr
|
|
$(DCC)
|
|
|
|
Tutorial_2_3.exe: Tutorial\2 Items-Checkpoints-Tags-Hypertext\3 List of Checkpoints\Tutorial_2_3.dpr
|
|
$(DCC)
|
|
|
|
Tutorial_2_4.exe: Tutorial\2 Items-Checkpoints-Tags-Hypertext\4 When Checkpoint Visible\Tutorial_2_4.dpr
|
|
$(DCC)
|
|
|
|
Tutorial_2_5.exe: Tutorial\2 Items-Checkpoints-Tags-Hypertext\5 Hypertext ID\Tutorial_2_5.dpr
|
|
$(DCC)
|
|
|
|
Tutorial_2_6.exe: Tutorial\2 Items-Checkpoints-Tags-Hypertext\6 Advanced Hypertext\Tutorial_2_6.dpr
|
|
$(DCC)
|
|
|
|
Tutorial_2_7.exe: Tutorial\2 Items-Checkpoints-Tags-Hypertext\7 Tags (Integer)\Tutorial_2_7.dpr
|
|
$(DCC)
|
|
|
|
Tutorial_2_8.exe: Tutorial\2 Items-Checkpoints-Tags-Hypertext\8 Tags (PChar)\Tutorial_2_8.dpr
|
|
$(DCC)
|
|
|
|
Tutorial_2_9.exe: Tutorial\2 Items-Checkpoints-Tags-Hypertext\9 More mouse events\Tutorial_2_9.dpr
|
|
$(DCC)
|
|
|
|
|