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

Windows编程

开发平台:

Visual C++

  1. TARGETOS=WINNT
  2. APPVER=4.0
  3. !include <win32.mak>
  4. all: ....binpfmon.exe
  5. OBJS = pfmon.res     
  6.        debug.obj     
  7.        error.obj     
  8.        init.obj      
  9.        module.obj    
  10.        pfmon.obj     
  11.        process.obj
  12. errormsg.h errormsg.rc msg00001.bin: errormsg.mc
  13.   mc -v errormsg.mc
  14. pfmon.res: errormsg.rc msg00001.bin pfmon.rc
  15.   rc -r -fo pfmon.res pfmon.rc
  16. .c.obj:
  17.   $(cc) $(cflags) $(cvars) $(cdebug) -I....include -I. $*.c
  18. ....binpfmon.exe:  $(OBJS)
  19.   @if not exist ....bin md ....bin > nul
  20.   $(link) $(linkdebug) $(conflags) -machine:$(CPU) -out:$@ $** 
  21.     $(conlibs) psapi.lib imagehlp.lib