Makefile.dos
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:1k
源码类别:

编辑器/阅读器

开发平台:

DOS

  1. #
  2. # Makefile to run al tests for Vim, on Dos-like machines.
  3. #
  4. # Requires a set of Unix tools: echo, diff, etc.
  5. VIMPROG = ..\vim
  6. # Omitted:
  7. # test2 "\tmp" doesn't work.
  8. # test10 'errorformat' is different
  9. # test12 can't unlink a swap file
  10. # test25 uses symbolic link
  11. # test27 can't edit file with "*"
  12. SCRIPTS16 =  test1.out test19.out test20.out test22.out 
  13. test23.out test24.out test28.out test29.out 
  14. test30.out test31.out test35.out test36.out
  15. SCRIPTS =  test3.out test4.out test5.out test6.out test7.out 
  16. test8.out test9.out test11.out test13.out test14.out 
  17. test15.out test17.out test18.out test21.out test26.out 
  18. test32.out test33.out test34.out
  19. SCRIPTS_GUI = test16.out
  20. .SUFFIXES: .in .out
  21. nongui: /tmp $(SCRIPTS16) $(SCRIPTS)
  22. echo ALL DONE
  23. small: /tmp $(SCRIPTS16)
  24. echo ALL DONE
  25. gui: /tmp $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS_GUI)
  26. echo ALL DONE
  27. clean:
  28. -del *.out
  29. -deltree /tmp/*
  30. .in.out:
  31. $(VIMPROG) -u vimrc.dos -s dotest.in $*.in
  32. diff test.out $*.ok
  33. rename test.out $*.out
  34. # rm Xdotest
  35. # Create a directory for temp files
  36. /tmp:
  37. -mkdir /tmp