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. all: testdll.dll
  5. # Update the object files if necessary
  6. testdll.obj: testdll.c
  7.  $(cc) $(cflags) $(cvarsdll) $(cdebug) testdll.c
  8. testmib.obj: testmib.c
  9.  $(cc) $(cflags) $(cvarsdll) $(cdebug) testmib.c
  10. # Update the import library
  11. testdll.lib: testdll.obj testmib.obj testdll.def
  12.  $(implib) -machine:$(CPU)     
  13.  -def:testdll.def     
  14.  testdll.obj          
  15.  testmib.obj          
  16.  -out:testdll.lib
  17. # Update the dynamic link library
  18. testdll.dll: testdll.lib testdll.obj testmib.obj testdll.def
  19.  
  20.  $(link) $(lflags) $(dlllflags) 
  21.  -base:0x1C000000  
  22.  -out:testdll.dll   
  23.  testdll.exp testdll.obj testmib.obj 
  24.          $(guilibsdll) snmpapi.lib