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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. TARGETOS=WIN95
  3. APPVER=4.0
  4. !include <win32.mak>
  5. all: dropext.dll
  6. # Update the object files if necessary
  7. defclsf.obj: defclsf.c
  8.     $(cc) $(cflags) $(cvarsdll) $(cdebug) defclsf.c
  9. dropext.obj: dropext.c
  10.     $(cc) $(cflags) $(cvarsdll) $(cdebug) dropext.c
  11. # Update the resources if necessary
  12. dropext.res: dropext.rc dropext.h
  13.     $(rc) $(rcvars) -r dropext.rc
  14. # Update the import library
  15. dropext.lib: dropext.obj dropext.def
  16.     $(implib) -machine:$(CPU)     
  17.     -def:dropext.def     
  18.     dropext.obj       
  19.     -out:dropext.lib
  20. # Update the dynamic link library
  21. dropext.dll: dropext.lib dropext.obj defclsf.obj dropext.def
  22.     $(link) $(linkdebug) $(dlllflags)     
  23.     -base:0x1C000000  
  24.     -out:dropext.dll   
  25.     dropext.exp dropext.obj defclsf.obj $(guilibsdll) shell32.lib uuid.lib