Makefile.dos
资源名称:vim53src.zip [点击查看]
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:1k
源码类别:
编辑器/阅读器
开发平台:
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