view src/testdir/Make_amiga.mak @ 22353:889143dbe2cd v8.2.1725

patch 8.2.1725: not all Pascal files are recognized Commit: https://github.com/vim/vim/commit/44aaf5416e0121500dd52b7cab306d7618b4fe53 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Sep 22 19:15:31 2020 +0200 patch 8.2.1725: not all Pascal files are recognized Problem: Not all Pascal files are recognized. Solution: Add filetype patterns. (Doug Kearns)
author Bram Moolenaar <Bram@vim.org>
date Tue, 22 Sep 2020 19:30:04 +0200
parents e529f06721f9
children
line wrap: on
line source

#
# Makefile to run all tests for Vim, on Amiga
#
# Requires "rm", "csh" and "diff"!

VIMPROG = /vim

default: nongui

include Make_all.mak

SCRIPTS = $(SCRIPTS_TINY_OUT)

.SUFFIXES: .in .out .res .vim

nongui:	/tmp $(SCRIPTS)
	csh -c echo ALL DONE

clean:
	csh -c \rm -rf *.out Xdir1 Xfind XfakeHOME Xdotest test.ok viminfo

.in.out:
	copy $*.ok test.ok
	$(VIMPROG) -u amiga.vim -U NONE --noplugin --not-a-term -s dotest.in $*.in
	diff test.out $*.ok
	rename test.out $*.out
	-delete X#? ALL QUIET
	-delete test.ok

# Create a directory for temp files
/tmp:
	makedir /tmp

# Manx requires all dependencies, but we stopped updating them.
# Delete the .out file(s) to run test(s).