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

📄 mk_ming.mak

📁 ultraEdit的Ctag标签工具的实现源代码
💻 MAK
字号:
# $Id: mk_ming.mak,v 1.1 2001/11/02 04:53:43 darren Exp $
#
# Makefile for Exuberant Ctags under Win32 with Mingw32 compiler
#
# Note that only the crtdll variant of the compiler is supported.
# The msvcrt variant has broken implementations of fgetpos() and fsetpos().

include source.mak

CFLAGS = -Wall
DEFINES = -DWIN32
CC = gcc

ctags: ctags.exe

ctags.exe: OPT = -O4
ctags.exe: LDFLAGS = -s
dctags.exe: OPT = -g

ctags.exe dctags.exe: $(SOURCES)
	$(CC) $(LDFLAGS) $(OPT) $(CFLAGS) $(DEFINES) -o $@ $(SOURCES)

clean:
	- del ctags.exe
	- del dctags.exe
	- del tags

⌨️ 快捷键说明

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