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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. !include <win32.mak>
  3. all: gina.dll
  4. # Define the compiler flags conditional on NODEBUG
  5. !IFDEF NODEBUG
  6. ginaflags= $(cflags) -DUNICODE -D_UNICODE
  7. !ELSE
  8. ginaflags= $(cflags) -DUNICODE -D_UNICODE -DDBG
  9. !ENDIF
  10. # Update the resource if necessary
  11. gina.res: res.rc
  12.   rc -r -fo gina.res res.rc
  13. # Inference rule for updating the object files
  14. .c.obj:
  15.   $(cc) $(cdebug) $(cvarsdll) $(ginaflags) -I. $*.c
  16. # Update the DLL
  17. gina.DLL:              
  18.           gina.obj     
  19.           debug.obj    
  20.   welcome.obj
  21.           shutdown.obj 
  22.           options.obj  
  23.           logon.obj    
  24.           util.obj     
  25.           gina.res
  26.   $(link) $(dlllflags)      
  27.   -ignore:4078      
  28.           -subsystem:native,4.0      
  29.           -def:gina.def              
  30.           -out:$*.dll                
  31.           $**                        
  32.           $(guilibsdll) comctl32.lib