view src/testdir/Make_amiga.mak @ 21799:e529f06721f9 v8.2.1449

patch 8.2.1449: some test makefiles delete files that are not generated Commit: https://github.com/vim/vim/commit/32a23ac61570365eff35097691d9b218b8539383 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 14 19:20:23 2020 +0200 patch 8.2.1449: some test makefiles delete files that are not generated Problem: Some test makefiles delete files that are not generated. Solution: Remove the deletion commands.
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Aug 2020 19:30:03 +0200
parents 30bdd2e4a6f9
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).