MAKEFILE
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:0k
源码类别:

Windows编程

开发平台:

Visual C++

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