view src/testdir/Make_amiga.mak @ 31684:8153d73088f2 v9.0.1174

patch 9.0.1174: smali files are not recognized Commit: https://github.com/vim/vim/commit/9a9432d3a223f7fbd902a0346030422ae0a97f0e Author: Amaan Q <amaanq12@gmail.com> Date: Tue Jan 10 19:58:35 2023 +0000 patch 9.0.1174: smali files are not recognized Problem: Smali files are not recognized. Solution: Add a pattern for Smali files. (Amaan Qureshi, closes https://github.com/vim/vim/issues/11801)
author Bram Moolenaar <Bram@vim.org>
date Tue, 10 Jan 2023 21:00:04 +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).