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 = mciapp32.sym
  6. !endif
  7. all: mciapp32.exe $(SYM)
  8. LIBS=msacm32.lib vfw32.lib winmm.lib shell32.lib
  9. OTHERCLOPTS=-DWIN32_LEAN_AND_MEAN -nologo -I. -I..include
  10. OTHERRCOPTS=-DWIN32_LEAN_AND_MEAN -I. -I..include
  11. # Update the resource if necessary
  12. mciapp.res: mciapp.rc mciapp.rcv
  13.     $(rc) $(rcflags) $(rcvars) $(OTHERRCOPTS) mciapp.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. mciapp32.exe mciapp32.map:   mciapp.obj 
  19.                 app.obj     
  20.                 appinit.obj 
  21.                 debug.obj   
  22.                 mciapp.res
  23.     $(link) $(linkdebug) $(guiflags) -out:mciapp32.exe $** $(guilibs) $(LIBS) 
  24.          -map:$*.map
  25.     
  26. mciapp32.sym: $*.map
  27. mapsym $*.map
  28. clean:
  29.     @if exist mciapp32.exe del mciapp32.exe
  30.     @if exist *.obj del *.obj
  31.     @if exist *.map del *.map
  32.     @if exist *.sym del *.sym
  33.     @if exist *.res del *.res
  34.     @if exist *.pdb del *.pdb
  35.     @if exist *.exp del *.exp
  36.     @if exist *.lib del *.lib