filevxd.mak
来自「文件过滤驱动程序源码,一个不需要安装IFS就可以编译的文件过滤驱动程序源码」· MAK 代码 · 共 38 行
MAK
38 行
# Copyright (c) 1994-1998 Compuware Corporation
# Makefile for HELLO example
# This is the makefile for simple VxD HELLO.386.
# This is a dynamic VxD
DYNAMIC = 1
# Define the name of the VxD
DEVICENAME = FILEVXD
# Specify that the VxD uses the C++ framework
FRAMEWORK = C
# Specify the list of object modules that comprise the VxD
OBJECTS = filemon.OBJ
# Build for debugging so that the debug message is printed
DEBUG = 0
# Include the necessary files from VToolsD
!include E:\include\vtoolsd.mak
!include E:\include\vxdtarg.mak
# Define the dependencies for the object modules
filemon.OBJ: filemon.c filemon.h rc4.c rc4.h
# FILEMON.mak - makefile for VxD FILEMON
#PATH=d:\driverstudio\vtoolsd\bin;$(PATH)
all: $(DEVICENAME).vxd
copy *.vxd ..\exe\release\.
copy *.vxd ..\exe\debug\.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?