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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. APPVER=4.0
  3. !include <win32.mak>
  4. !if "$(CPU)" == "i386" # .syms are useful for Win95
  5. SYM = idfedt32.sym
  6. !endif
  7. all: idfedt32.exe $(SYM)
  8. LIBS=msacm32.lib vfw32.lib winmm.lib shell32.lib
  9. OTHERCLOPTS=-nologo -I. -I..include
  10. OTHERRCOPTS=-I. -I..include -I....include
  11. # Update the resource if necessary
  12. idfedit.res: idfedit.rc idfedit.rcv
  13.     $(rc) $(rcflags) $(rcvars) $(OTHERRCOPTS) idfedit.rc
  14. # Update the object file if necessary
  15. .c.obj:
  16.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) $<
  17. # Update the executable file if necessary, and if so, add the resource back in.
  18. idfedt32.exe idfedt32.map:   drawstr.obj 
  19.                 head.obj    
  20.                 idf.obj 
  21.                 main.obj 
  22.                 tridee.obj 
  23.                 idfedit.res
  24.     $(link) $(linkdebug) $(guiflags) -out:idfedt32.exe $** $(guilibs) 
  25.         $(LIBS) -map:$*.map
  26.     
  27. idfedt32.sym: $*.map
  28. mapsym $*.map
  29. clean:
  30.     @if exist idfedt32.exe del idfedt32.exe
  31.     @if exist *.obj del *.obj
  32.     @if exist *.map del *.map
  33.     @if exist *.sym del *.sym
  34.     @if exist *.res del *.res
  35.     @if exist *.pdb del *.pdb
  36.     @if exist *.exp del *.exp
  37.     @if exist *.lib del *.lib