home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 March / CMCD0304.ISO / Software / Freeware / Programare / nullsoft / nsis20.exe / Contrib / VPatch / Source / VPatch2.bpg
Text File  |  2003-08-12  |  877b  |  27 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 = GenPat2.exe VAppend.exe VPatchGUI.exe
  13. #------------------------------------------------------------------------------
  14. default: $(PROJECTS)
  15. #------------------------------------------------------------------------------
  16.  
  17. GenPat2.exe: GenPat\GenPat2.dpr
  18.   $(DCC)
  19.  
  20. VAppend.exe: GenPat\VAppend.dpr
  21.   $(DCC)
  22.  
  23. VPatchGUI.exe: gui\VPatchGUI.dpr
  24.   $(DCC)
  25.  
  26.  
  27.