mk_djg.mak
来自「ultraEdit的Ctag标签工具的实现源代码」· MAK 代码 · 共 19 行
MAK
19 行
# $Id: mk_djg.mak,v 1.2 2003/03/31 04:53:22 darren Exp $
#
# The most simplistic Makefile, for DJGPP Version 2 on Windows
#
# Rather than using this makefile, it is preferable to run "configure", then
# "make" under BASH on DJGPP (i.e. the standard means of building a package on
# Unix), but you have to have a fuller complement of DJGPP packages installed
# to do this.
include source.mak
CFLAGS = -O2 -Wall -DMSDOS
ctags.exe: $(SOURCES)
gcc $(CFLAGS) -s -o ctags.exe $(SOURCES) -lpc
clean:
del ctags.exe
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?