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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. TARGETOS=WINNT
  3. !include <win32.mak>
  4. !IF "$(TARGETLANG)" == ""
  5. all: mousinfo.exe
  6. !ELSE
  7. all: WARN_MSG
  8. !ENDIF
  9. WARN_MSG:
  10.  @echo "Warning: new mouse functionality not available in beta"
  11. # Update the object file if necessary
  12. mousinfo.obj: mousinfo.c mousinfo.h
  13.     $(cc) $(cflags) $(cvars) $(cdebug) /c mousinfo.c
  14. # Update the resources if necessary
  15. mousinfo.res: mousinfo.rc mousinfo.h
  16.     rc $(rcflags) $(rcvars)  mousinfo.rc
  17. # Update the executable file if necessary, and if so, add the resource back in.
  18. mousinfo.exe: mousinfo.obj  mousinfo.res
  19.     $(link) $(linkdebug) $(guiflags) /out:mousinfo.exe 
  20. mousinfo.obj mousinfo.res $(guilibs)
  21. clean:
  22.     del *.obj
  23.     del *.res
  24.     del *.vcp
  25.     del *.bak
  26.     del *.bsc
  27.     del *.sbr