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: demo.exe select.dll
  4. # Update the object files if necessary
  5. demo.obj: demo.c
  6.     $(cc) $(cflags) $(cvarsdll) $(cdebug) demo.c
  7. select.obj: select.c
  8.     $(cc) $(cflags) $(cvarsdll) $(cdebug) select.c
  9. # Update the resources if necessary
  10. demo.res: demo.rc demo.h
  11.     $(rc) $(rcvars) -r demo.rc
  12. # Update the import library
  13. select.lib: select.obj select.def
  14.     $(implib) -machine:$(CPU)     
  15.     -def:select.def     
  16.     select.obj       
  17.     -out:select.lib
  18. # Update the dynamic link library
  19. select.dll: select.obj select.def
  20.     $(link) $(linkdebug) $(dlllflags)     
  21.     -base:0x1C000000  
  22.     -out:select.dll   
  23.     select.exp select.obj $(guilibsdll)
  24. # Update the executable file if necessary.
  25. # If so, add the resource back in.
  26. demo.exe: demo.obj select.lib demo.res demo.def
  27.     $(link) $(linkdebug) $(guiflags) -out:demo.exe demo.obj select.lib demo.res $(guilibsdll)