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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. !include <ntwin32.mak>
  3. all: memory.exe
  4. # Update the object file if necessary
  5. memory.obj: memory.c memory.h
  6.     $(cc) $(cflags) $(cvars) $(cdebug) memory.c
  7. nmmemcli.obj: nmmemcli.c
  8.     $(cc) $(cflags) $(cvars) $(cdebug) nmmemcli.c
  9. nmmemsrv.obj: nmmemsrv.c
  10.     $(cc) $(cflags) $(cvars) $(cdebug) nmmemsrv.c
  11. # Update the resources if necessary
  12. memory.res: memory.rc memory.h
  13.     rc $(rcflags) $(rcvars)  memory.rc
  14. # Update the executable file if necessary, and if so, add the resource back in.
  15. memory.exe: memory.obj nmmemcli.obj nmmemsrv.obj memory.res
  16.     $(link) $(linkdebug) $(guiflags) -out:memory.exe     
  17.     memory.obj nmmemcli.obj nmmemsrv.obj memory.res $(guilibs) shell32.lib
  18. clean:
  19.     del *.obj
  20.     del *.res
  21.     del *.vcp
  22.     del *.bak
  23.     del *.bsc
  24.     del *.sbr