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 = mcipuzzl.sym
  5. !endif
  6. all: mcipuzzl.exe $(SYM)
  7. OBJS= mcipuzzl.obj puzzproc.obj puzzle.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. mcipuzzl.res: mcipuzzl.rc mcipuzzl.h mcipuzzl.rcv mcipuzzl.ico
  12.     $(rc) -r -DWIN32 $(OTHERRCOPTS) mcipuzzl.rc
  13. # Update the object file if necessary
  14. mcipuzzl.obj: mcipuzzl.c mcipuzzl.h puzzle.h puzzproc.h
  15.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) mcipuzzl.c
  16. puzzle.obj: puzzle.c puzzle.h
  17.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) puzzle.c
  18. puzzproc.obj: puzzproc.c puzzproc.h puzzle.h
  19.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) puzzproc.c
  20. # Update the executable file if necessary, and if so, add the resource back in.
  21. mcipuzzl.exe mcipuzzl.map:  $(OBJS) mcipuzzl.res
  22.     $(link) $(linkdebug) $(guilflags) -out:mcipuzzl.exe $(OBJS) mcipuzzl.res $(guilibs) 
  23.  winmm.lib vfw32.lib -map:$*.map
  24.     
  25. mcipuzzl.sym: $*.map
  26. mapsym $*.map
  27. clean:
  28.     @if exist mcipuzzl.exe del mcipuzzl.exe
  29.     @if exist *.obj del *.obj
  30.     @if exist *.map del *.map
  31.     @if exist *.sym del *.sym
  32.     @if exist *.res del *.res
  33.     @if exist *.pdb del *.pdb
  34.     @if exist *.exp del *.exp
  35.     @if exist *.lib del *.lib