2020-05-10 20:38:18 +02: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 $**
|
|
|
|
#------------------------------------------------------------------------------
|
2021-01-03 02:32:36 +01:00
|
|
|
PROJECTS = CharMap.exe ColorButtons.exe ConsoleColors.exe DateTime.exe DrawImage.exe DrawImageEx.exe DrawText.exe \
|
|
|
|
Echo.exe GetCurrentDirectory.exe GetPixel.exe GetPointOwner.exe Hello.exe HelloGUI.exe LoadFile.exe ReadFolder.exe \
|
|
|
|
Screenshot.exe SetCursor.exe SetPixel.exe SetWindowPos.exe
|
2020-05-10 20:38:18 +02:00
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
default: $(PROJECTS)
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
2021-01-03 02:32:36 +01:00
|
|
|
CharMap.exe: Console\CharMap\CharMap.dpr
|
|
|
|
$(DCC)
|
|
|
|
|
2020-06-08 00:23:29 +02:00
|
|
|
ColorButtons.exe: GUI\ColorButtons\ColorButtons.dpr
|
2020-05-10 20:38:18 +02:00
|
|
|
$(DCC)
|
|
|
|
|
2020-06-08 00:23:29 +02:00
|
|
|
ConsoleColors.exe: Console\ConsoleColors\ConsoleColors.dpr
|
2020-06-07 17:33:22 +02:00
|
|
|
$(DCC)
|
|
|
|
|
2020-06-08 00:23:29 +02:00
|
|
|
DateTime.exe: Console\DateTime\DateTime.dpr
|
2020-05-10 20:38:18 +02:00
|
|
|
$(DCC)
|
|
|
|
|
2020-06-08 00:23:29 +02:00
|
|
|
DrawImage.exe: GUI\DrawImage\DrawImage.dpr
|
2020-05-10 20:38:18 +02:00
|
|
|
$(DCC)
|
|
|
|
|
2020-06-08 00:23:29 +02:00
|
|
|
DrawImageEx.exe: GUI\DrawImageEx\DrawImageEx.dpr
|
2020-05-10 20:38:18 +02:00
|
|
|
$(DCC)
|
|
|
|
|
2020-06-08 00:23:29 +02:00
|
|
|
DrawText.exe: GUI\DrawText\DrawText.dpr
|
2020-05-10 20:38:18 +02:00
|
|
|
$(DCC)
|
|
|
|
|
2020-06-20 23:05:01 +02:00
|
|
|
Echo.exe: Console\Echo\Echo.dpr
|
|
|
|
$(DCC)
|
|
|
|
|
2020-06-08 00:23:29 +02:00
|
|
|
GetCurrentDirectory.exe: Console\GetCurrentDir\GetCurrentDir.dpr
|
2020-05-10 20:38:18 +02:00
|
|
|
$(DCC)
|
|
|
|
|
2020-06-08 00:23:29 +02:00
|
|
|
GetPixel.exe: GUI\GetPixel\GetPixel.dpr
|
2020-05-10 20:38:18 +02:00
|
|
|
$(DCC)
|
|
|
|
|
2020-06-08 00:23:29 +02:00
|
|
|
GetPointOwner.exe: GUI\GetPointOwner\GetPointOwner.dpr
|
2020-05-10 20:38:18 +02:00
|
|
|
$(DCC)
|
|
|
|
|
2020-06-08 00:23:29 +02:00
|
|
|
Hello.exe: Console\Hello\Hello.dpr
|
2020-05-10 20:38:18 +02:00
|
|
|
$(DCC)
|
|
|
|
|
2020-06-28 21:27:34 +02:00
|
|
|
HelloGUI.exe: GUI\HelloGUI\HelloGUI.dpr
|
2020-06-07 17:33:22 +02:00
|
|
|
$(DCC)
|
|
|
|
|
2020-06-08 00:23:29 +02:00
|
|
|
LoadFile.exe: Console\LoadFile\LoadFile.dpr
|
2020-05-10 20:38:18 +02:00
|
|
|
$(DCC)
|
|
|
|
|
2020-06-08 00:23:29 +02:00
|
|
|
ReadFolder.exe: Console\ReadFolder\ReadFolder.dpr
|
2020-05-10 20:38:18 +02:00
|
|
|
$(DCC)
|
|
|
|
|
2020-06-08 00:23:29 +02:00
|
|
|
Screenshot.exe: GUI\Screenshot\Screenshot.dpr
|
2020-05-10 20:38:18 +02:00
|
|
|
$(DCC)
|
|
|
|
|
2020-06-08 00:23:29 +02:00
|
|
|
SetCursor.exe: GUI\SetCursor\SetCursor.dpr
|
2020-05-10 20:38:18 +02:00
|
|
|
$(DCC)
|
|
|
|
|
2020-06-08 00:23:29 +02:00
|
|
|
SetPixel.exe: GUI\SetPixel\SetPixel.dpr
|
2020-05-10 20:38:18 +02:00
|
|
|
$(DCC)
|
|
|
|
|
2020-06-08 00:23:29 +02:00
|
|
|
SetWindowPos.exe: GUI\SetWindowPos\SetWindowPos.dpr
|
2020-06-07 17:33:22 +02:00
|
|
|
$(DCC)
|