home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / fibers / makefile < prev   
Encoding:
Makefile  |  1996-07-04  |  455 b   |  24 lines

  1. # Fibers are supported on Windows NT 3.51 service pack 3 and beyond.
  2.  
  3. TARGETOS=WINNT
  4. APPVER=4.0
  5. !include <win32.mak>
  6.  
  7. #detect build time environment
  8. !IF "$(OS)" == "Windows_NT"
  9. all: fibers.exe
  10. !else
  11. all: WARN_MSG
  12. !endif
  13.  
  14. WARN_MSG:
  15.     @echo "This sample will work only on Windows NT"
  16.  
  17.  
  18.  
  19. fibers.obj: fibers.c
  20.     $(cc) $(cflags) $(cvars) fibers.c
  21.  
  22. fibers.exe: fibers.obj
  23.     $(link) $(conflags) -out:fibers.exe fibers.obj $(conlibs)
  24.