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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. !include <win32.mak>
  3. all: ipxchat.exe
  4. # Update the resource if necessary
  5. OBJS = ipxchat.obj about.obj dispatch.obj init.obj misc.obj winmain.obj listen.obj connect.obj
  6. # Inference rules
  7. .c.obj:
  8.    $(cc) $(cflags) $(cvars) $(cdebug) $<
  9. # Dependencies
  10. ipxchat.obj:  ipxchat.c
  11. about.obj:    about.c globals.h
  12. init.obj:     init.c globals.h
  13. dispatch.obj: dispatch.c globals.h
  14. misc.obj:     misc.c globals.h
  15. winmain.obj:  winmain.c globals.h
  16. listen.obj:   listen.c globals.h
  17. connect.obj:  connect.c globals.h
  18. ipxchat.res: ipxchat.rc globals.h
  19.     rc -r $(rcvars) ipxchat.rc
  20. ipxchat.exe: $(OBJS) ipxchat.res
  21.    $(link)                                       
  22.       $(linkdebug) $(guiflags)                   
  23.           -out:ipxchat.exe                           
  24.           $(OBJS)                                    
  25.           ipxchat.res                                
  26.           $(guilibs) version.lib
  27. clean:
  28.    del *.obj
  29.    del *.res
  30.    del *.bak
  31.    del *.pdb
  32.    del *.vcp
  33.    del *.mdp
  34. cleaner: clean
  35.    del *.exe