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: hook.lib hook.dll
  4. # Update the object files if necessary
  5. hook.obj: hook.c
  6.     $(cc) $(scall) $(cflags) $(cvarsdll) $(cdebug) hook.c
  7. # Update the import library
  8. hook.lib: hook.obj hook.def
  9.     $(implib) -machine:$(CPU)     
  10.     -def:hook.def           
  11.     hook.obj                
  12.     -out:hook.lib
  13. # Update the dynamic link library
  14. hook.dll: hook.obj hook.def
  15.     $(link) $(linkdebug) $(dlllflags)     
  16.     -base:0x1C000000  
  17.     -out:hook.dll   
  18.     hook.exp hook.obj $(guilibsdll)