home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / msj / msjv3_3 / windebug / bugtest.mak < prev    next >
Encoding:
Text File  |  1989-03-02  |  467 b   |  23 lines

  1. # Figure 8
  2. # ========
  3.  
  4. # BUGTEST MAKE File
  5. # =================
  6.  
  7.  
  8. STDFLAGS=-c -u -AS -FPa -Gsw -Os -Zep
  9. BUGFLAGS=-c -u -AS -FPa -Gsw -Os -Zep -DDEBUG
  10.  
  11. bugtest.res: bugtest.rc bugtest.ico
  12.    rc -r bugtest.rc
  13.  
  14. debug.obj: debug.h debug.c
  15.    cl $(STDFLAGS) debug.c
  16.  
  17. bugtest.obj: bugtest.c
  18.    cl $(BUGFLAGS) bugtest.c
  19.  
  20. bugtest.exe: bugtest.obj bugtest.def bugtest.res debug.obj
  21.    link4 bugtest+debug /AL:16 /NOE,,,slibw,bugtest.def
  22.    rc bugtest.res
  23.