SDK/Examples/Examples.bpg

67 lines
1.9 KiB
Plaintext
Raw Normal View History

#------------------------------------------------------------------------------
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 = ColorButtons.exe ConsoleColors.exe DateTime.exe DrawImage.exe DrawImageEx.exe DrawText.exe GetCurrentDirectory.exe \
GetPixel.exe GetPointOwner.exe Hello.exe HelloGUI.exe LoadFile.exe ReadFolder.exe Screenshot.exe SetCursor.exe SetPixel.exe SetWindowPos.exe
#------------------------------------------------------------------------------
default: $(PROJECTS)
#------------------------------------------------------------------------------
2020-06-08 00:23:29 +02:00
ColorButtons.exe: GUI\ColorButtons\ColorButtons.dpr
$(DCC)
2020-06-08 00:23:29 +02:00
ConsoleColors.exe: Console\ConsoleColors\ConsoleColors.dpr
$(DCC)
2020-06-08 00:23:29 +02:00
DateTime.exe: Console\DateTime\DateTime.dpr
$(DCC)
2020-06-08 00:23:29 +02:00
DrawImage.exe: GUI\DrawImage\DrawImage.dpr
$(DCC)
2020-06-08 00:23:29 +02:00
DrawImageEx.exe: GUI\DrawImageEx\DrawImageEx.dpr
$(DCC)
2020-06-08 00:23:29 +02:00
DrawText.exe: GUI\DrawText\DrawText.dpr
$(DCC)
2020-06-08 00:23:29 +02:00
GetCurrentDirectory.exe: Console\GetCurrentDir\GetCurrentDir.dpr
$(DCC)
2020-06-08 00:23:29 +02:00
GetPixel.exe: GUI\GetPixel\GetPixel.dpr
$(DCC)
2020-06-08 00:23:29 +02:00
GetPointOwner.exe: GUI\GetPointOwner\GetPointOwner.dpr
$(DCC)
2020-06-08 00:23:29 +02:00
Hello.exe: Console\Hello\Hello.dpr
$(DCC)
2020-06-08 00:23:29 +02:00
HelloGUI.exe: GUI\Hello\HelloGUI.dpr
$(DCC)
2020-06-08 00:23:29 +02:00
LoadFile.exe: Console\LoadFile\LoadFile.dpr
$(DCC)
2020-06-08 00:23:29 +02:00
ReadFolder.exe: Console\ReadFolder\ReadFolder.dpr
$(DCC)
2020-06-08 00:23:29 +02:00
Screenshot.exe: GUI\Screenshot\Screenshot.dpr
$(DCC)
2020-06-08 00:23:29 +02:00
SetCursor.exe: GUI\SetCursor\SetCursor.dpr
$(DCC)
2020-06-08 00:23:29 +02:00
SetPixel.exe: GUI\SetPixel\SetPixel.dpr
$(DCC)
2020-06-08 00:23:29 +02:00
SetWindowPos.exe: GUI\SetWindowPos\SetWindowPos.dpr
$(DCC)