filemon.mak
资源名称:filemon.zip [点击查看]
上传用户:ibmxxxxx
上传日期:2007-01-03
资源大小:35k
文件大小:1k
源码类别:
系统编程
开发平台:
Visual C++
- # Listing 3 Makefile for Filemon.vxd
- # Requires:
- # MS C++ Compiler 9.x (from VC++ 2.x Retail)
- # MASM Assembler 6.11c (from Beta-3 DDK or newer)
- # MS Link (from Beta-3 DDK or newer)
- # VXDWRAPS.CLB (from Beta-3 DDK or newer)
- # (For a Build 347 binary, add -DBUILD347 to CVXDFLAGS)
- !IFDEF NUMEGA
- ## For WinICE compatible SYM files
- SYMGEN = msym
- !ELSE
- ## For WDeb386 compatible SYM files
- SYMGEN = mapsym
- !ENDIF
- ## Compiler options
- CVXDFLAGS = -Zdp -Gs -c -DIS_32 -Zl -DDEBLEVEL=1 -DDEBUG
- ## Assembler options
- AFLAGS = -coff -DBLD_COFF -DIS_32 -W2 -Zid -c -Cx
- -DMASM6 -DDEBLEVEL=1 -DDEBUG
- all: filemon.vxd
- filemon.obj: filemon.c
- cl $(CVXDFLAGS) %s
- vxdstub.obj: vxdstub.asm
- ml $(AFLAGS) %s
- filemon.vxd: filemon.obj vxdstub.obj
- filemon.def
- link @<<
- /MACHINE:i386 /DEBUG /DEBUGTYPE:MAP
- /PDB:NONE /VXD /DEF:filemon.def
- /OUT:filemon.vxd /MAP:filemon.map
- vxdstub.obj filemon.obj
- vxdwraps.clb
- <<
- $(SYMGEN) filemon