home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / PRONTDEM.ZIP / PRONTO.ZIP / WHERE / MAKEFILE next >
Text File  |  1991-02-20  |  479b  |  31 lines

  1.  
  2. BCFLAGS = -O -Z -Zi
  3.  
  4. .bas.obj:
  5.     copy pronto.mac+$*.bas $*.tmp
  6.     pmacro $*.tmp > $*.bpm
  7.     c:\bc7\binb\bc $*.bpm $(BCFLAGS);
  8.     del $*.tmp
  9.  
  10. # eseguibile
  11. where.exe : where.obj where.res where.def
  12.      link @<<
  13. where.obj +
  14. pronto.obj /A:16
  15. where.exe
  16. nul /NOD /NOE /NOI /CO
  17. c:\bc7\lib\bcl71enp.lib+
  18. os2.lib+
  19. pronto.lib
  20. where.def
  21. <<
  22.      rc where.res where.exe
  23.  
  24.  
  25. # resource file
  26. where.res: where.rc
  27.     rc -r where.rc
  28.  
  29. # programma basic
  30. where.obj: where.bas
  31.