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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. !include <win32.mak>
  3. !if "$(CPU)" == "i386" # .syms are useful for Win95
  4. SYM = langplay.sym
  5. !endif
  6. all: langplay.exe $(SYM)
  7. OBJS= langplay.obj
  8. OTHERCLOPTS=-DWIN32_LEAN_AND_MEAN -nologo -I. -I..include
  9. OTHERRCOPTS=-DWIN32_LEAN_AND_MEAN -I. -I..include
  10. # Update the resource if necessary
  11. langplay.res: langplay.rc langplay.h langplay.rcv langplay.ico
  12.     $(rc) -r -DWIN32 $(OTHERRCOPTS) langplay.rc
  13. # Update the object file if necessary
  14. langplay.obj: langplay.c langplay.h
  15.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) langplay.c
  16. # Update the executable file if necessary, and if so, add the resource back in.
  17. langplay.exe langplay.map:  $(OBJS) langplay.res
  18.     $(link) $(linkdebug) $(guilflags) -out:langplay.exe $(OBJS) langplay.res $(guilibs) 
  19.  winmm.lib vfw32.lib -map:$*.map
  20.     
  21. langplay.sym: $*.map
  22. mapsym $*.map
  23. clean:
  24.     @if exist langplay.exe del langplay.exe
  25.     @if exist *.obj del *.obj
  26.     @if exist *.map del *.map
  27.     @if exist *.sym del *.sym
  28.     @if exist *.res del *.res
  29.     @if exist *.pdb del *.pdb
  30.     @if exist *.exp del *.exp
  31.     @if exist *.lib del *.lib