home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Demos / Midas / InternetExpress / CustomerList / projectgroup1.bpg < prev    next >
Text File  |  1999-08-11  |  842b  |  24 lines

  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 = CustomerList.exe rdmCustomerData.exe
  13. #------------------------------------------------------------------------------
  14. default: $(PROJECTS)
  15. #------------------------------------------------------------------------------
  16.  
  17. CustomerList.exe: CustomerList.dpr
  18.   $(DCC)
  19.  
  20. rdmCustomerData.exe: rdmCustomerData.dpr
  21.   $(DCC)
  22.  
  23.  
  24.