xref: /netbsd/bin/ed/test/Makefile (revision 82f8524f)
1ED=	../obj/ed
2
3all: build test
4	@echo done
5
6build: mkscripts.sh
7	@echo building test scripts...
8	@chmod +x mkscripts.sh
9	@mkscripts.sh ${ED}
10
11test: build ckscripts.sh
12	@echo running test scripts...
13	@chmod +x ckscripts.sh
14	@ckscripts.sh ${ED}
15
16clean:
17	rm -f *.ed *.[oz] *~
18