view src/testdir/Make_amiga.mak @ 23485:198ad7ef2420 v8.2.2285

patch 8.2.2285: Vim9: cannot set an option to a false Commit: https://github.com/vim/vim/commit/b0d8182fa39f2c9403f5f9a0663589fcab43a6c8 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 3 15:55:10 2021 +0100 patch 8.2.2285: Vim9: cannot set an option to a false Problem: Vim9: cannot set an option to a false. Solution: For VAR_BOOL use string "0". (closes https://github.com/vim/vim/issues/7603)
author Bram Moolenaar <Bram@vim.org>
date Sun, 03 Jan 2021 16:00:03 +0100
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).