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

📄 makefile.dos

📁 VIM文本编辑器
💻 DOS
字号:
#
# Makefile to run al tests for Vim, on Dos-like machines.
#
# Requires a set of Unix tools: echo, diff, etc.

VIMPROG = ..\\vim

# Omitted:
# test2		"\\tmp" doesn't work.
# test10	'errorformat' is different
# test12	can't unlink a swap file
# test25	uses symbolic link
# test27	can't edit file with "*"

SCRIPTS16 = 	test1.out test19.out test20.out test22.out \
		test23.out test24.out test28.out test29.out \
		test30.out test31.out test35.out test36.out

SCRIPTS = 	test3.out test4.out test5.out test6.out test7.out \
		test8.out test9.out test11.out test13.out test14.out \
		test15.out test17.out test18.out test21.out test26.out \
		test32.out test33.out test34.out

SCRIPTS_GUI = test16.out

.SUFFIXES: .in .out

nongui:	/tmp $(SCRIPTS16) $(SCRIPTS)
	echo ALL DONE

small:	/tmp $(SCRIPTS16)
	echo ALL DONE

gui:	/tmp $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS_GUI)
	echo ALL DONE

clean:
	-del *.out
	-deltree /tmp/*

.in.out:
	$(VIMPROG) -u vimrc.dos -s dotest.in $*.in
	diff test.out $*.ok
	rename test.out $*.out
#	rm Xdotest


# Create a directory for temp files
/tmp:
	-mkdir /tmp

⌨️ 快捷键说明

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