MAKEFILE
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- # Nmake macros for building Windows 32-Bit apps
- !include <win32.mak>
- all: ipxchat.exe
- # Update the resource if necessary
- OBJS = ipxchat.obj about.obj dispatch.obj init.obj misc.obj winmain.obj listen.obj connect.obj
- # Inference rules
- .c.obj:
- $(cc) $(cflags) $(cvars) $(cdebug) $<
- # Dependencies
- ipxchat.obj: ipxchat.c
- about.obj: about.c globals.h
- init.obj: init.c globals.h
- dispatch.obj: dispatch.c globals.h
- misc.obj: misc.c globals.h
- winmain.obj: winmain.c globals.h
- listen.obj: listen.c globals.h
- connect.obj: connect.c globals.h
- ipxchat.res: ipxchat.rc globals.h
- rc -r $(rcvars) ipxchat.rc
- ipxchat.exe: $(OBJS) ipxchat.res
- $(link)
- $(linkdebug) $(guiflags)
- -out:ipxchat.exe
- $(OBJS)
- ipxchat.res
- $(guilibs) version.lib
- clean:
- del *.obj
- del *.res
- del *.bak
- del *.pdb
- del *.vcp
- del *.mdp
- cleaner: clean
- del *.exe