Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Makefile.dos
Package: vim53src.zip [view]
Upload User: gddssl
Upload Date: 2007-01-06
Package Size: 1003k
Code Size: 1k
Category:
Editor
Development Platform:
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