⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mk_mvc.mak

📁 Exuberant Ctags is a multilanguage reimplementation of the much-underused ctags(1) program and is i
💻 MAK
字号:
# $Id: mk_mvc.mak,v 1.7 2003/09/19 04:02:39 darren Exp $## Makefile for Win32 using Microsoft Visual C++ compilerinclude source.mak# You can obtain an Win32 version of the Gnu regex support library from#   http://people.delphiforums.com/gjc/gnu_regex.html# Point REGEX_DIR to the directory created when you extract the archive.# If you just run gnu_regex.exe in this directory, then you can just# uncomment the REGEX_DIR macro below and everything should work.#REGEX_DIR = gnu_regex_dist!ifdef REGEX_DIREXTRA_INC = -I$(REGEX_DIR)# Uncomment the following macro to dynamically link against the regex DLL;# otherwise link statically against regex.#REGEX_DLL=1!ifdef REGEX_DLLREGEX_DEFINE = -DHAVE_REGCOMPEXTRA_LIBS = $(REGEX_DIR)\gnu_regex.lib!elseREGEX_DEFINE = -DHAVE_REGCOMP -DREGEX_MALLOC -DSTDC_HEADERS=1EXTRA_LIBS = regex.obj!endif!endifDEFINES = -DWIN32 $(REGEX_DEFINE)INCLUDES = $(EXTRA_INC)OPT = /O2 /G5ctags: ctags.exectags.exe: $(SOURCES) respmvc $(EXTRA_LIBS)	cl $(OPT) /Fe$@ @respmvc /link setargv.objreadtags.exe: readtags.c	cl /clr $(OPT) /Fe$@ $(DEFINES) -DREADTAGS_MAIN readtags.c /link setargv.obj# Debug versiondctags.exe: $(SOURCES) respmvc $(EXTRA_LIBS)	cl /Zi -DDEBUG /Fe$@ @respmvc debug.c /link setargv.objregex.obj:	cl /c $(OPT) /Fo$@ $(DEFINES) -Dconst= $(INCLUDES) $(REGEX_DIR)\regex.crespmvc: $(SOURCES) $(HEADERS) mk_mvc.mak	echo $(DEFINES) $(INCLUDES) $(SOURCES) $(EXTRA_LIBS) > $@mostlyclean:	- del *.obj	- del dctags.exe	- del respmvc	- del tagsclean: mostlyclean	- del ctags.exe

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -