summaryrefslogtreecommitdiff
path: root/bin/ed/test/Makefile
blob: fe631a83b9d648d966ad7266618185abab323fb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#	$NetBSD: Makefile,v 1.12 2003/10/26 03:50:07 lukem Exp $

.include <bsd.own.mk>

ED?=	../obj/ed

all: check
	@:

check: build test
	@if grep -h '\*\*\*' errs.o scripts.o; then :; else \
		echo "tests completed successfully."; \
	fi

build: mkscripts.sh
	@if [ -f errs.o ]; then :; else \
		echo "building test scripts for $(ED) ..."; \
		${HOST_SH} ${.CURDIR}/mkscripts.sh $(ED); \
	fi

test: build ckscripts.sh
	@echo testing $(ED) ...
	@${HOST_SH} ckscripts.sh $(ED)

clean:
	rm -f *.ed *.red *.[oz] *~

.include <bsd.prog.mk>