home *** CD-ROM | disk | FTP | other *** search
/ Windows Shareware GOLD / NuclearComputingVol3No1.cdr / _bbs4 / f1476.zip / RESGAUGE next >
Text File  |  1991-06-04  |  996b  |  35 lines

  1. # ===========================================================================
  2. # resgauge -- nmake file for the Resource Gauge application.
  3. # ---------------------------------------------------------------------------
  4. # C compiler flags:
  5. #    -c        compile only
  6. #    -G2sw    generate 80286 code
  7. #            disable stack checking
  8. #            generate Windows prolog/epilog code
  9. #    -Ow        disable aliasing across calls
  10. #    -W3        warn about missing function prototypes
  11. #    -Zp        pack structures on byte boundaries
  12. # ===========================================================================
  13.  
  14.  
  15. all: resgauge.exe
  16.  
  17. resgauge.res: resgauge.rc resgauge.h resgauge.ico
  18.     rc -r resgauge.rc
  19.  
  20. resgauge.obj: resgauge.c resgauge.h
  21.     cl -c -G2sw -Ow -W3 -Zp resgauge.c
  22.  
  23. resgauge.exe: resgauge.obj resgauge.def
  24.     link resgauge, /align:16, nul, /nod libw slibcew, resgauge
  25.     fixds resgauge.exe
  26.     rc -t resgauge.res
  27.  
  28. resgauge.exe: resgauge.res
  29.     rc -t resgauge.res
  30.  
  31.  
  32. # ===============
  33. # end of resgauge
  34. # ===============
  35.