Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
filemon.mak
Package: filemon.zip [view]
Upload User: ibmxxxxx
Upload Date: 2007-01-03
Package Size: 35k
Code Size: 1k
Category:
Windows Kernel
Development Platform:
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