Indy70.bpg 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. #------------------------------------------------------------------------------
  2. VERSION = BWS.01
  3. #------------------------------------------------------------------------------
  4. !ifndef ROOT
  5. ROOT = $(MAKEDIR)\..
  6. !endif
  7. #------------------------------------------------------------------------------
  8. MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
  9. DCC = $(ROOT)\bin\dcc32.exe $**
  10. BRCC = $(ROOT)\bin\brcc32.exe $**
  11. #------------------------------------------------------------------------------
  12. PROJECTS = IndySystem70.bpl IndyCore70.bpl IndyProtocols70.bpl \
  13. dclIndyCore70.bpl dclIndyProtocols70.bpl
  14. #------------------------------------------------------------------------------
  15. default: $(PROJECTS)
  16. #------------------------------------------------------------------------------
  17. IndySystem70.bpl: System\IndySystem70.dpk
  18. $(DCC)
  19. IndyCore70.bpl: Core\IndyCore70.dpk
  20. $(DCC)
  21. IndyProtocols70.bpl: Protocols\IndyProtocols70.dpk
  22. $(DCC)
  23. dclIndyCore70.bpl: Core\dclIndyCore70.dpk
  24. $(DCC)
  25. dclIndyProtocols70.bpl: Protocols\dclIndyProtocols70.dpk
  26. $(DCC)