hello.mak
来自「使用VToolsD编写的简单的hello程序」· MAK 代码 · 共 24 行
MAK
24 行
# Copyright (c) 1994 Vireo Software, Inc.
# Makefile for HELLO example
# This is the makefile for simple VxD HELLO.386.
# Define the name of the VxD
DEVICENAME = HELLO
# Specify that the VxD uses the C++ framework
FRAMEWORK = CPP
# Specify the list of object modules that comprise the VxD
OBJECTS = hello.obj
# Build for debugging so that the debug message is printed
DEBUG = 1
# Include the necessary files from VToolsD
!include $(VTOOLSD)\include\vtoolsd.mak
!include $(VTOOLSD)\include\vxdtarg.mak
# Define the dependencies for the object modules
hello.obj: hello.cpp
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?