Makefile revision 1.5
1#	$Id: Makefile,v 1.5 1993/08/02 17:15:26 mycroft Exp $
2
3ED=	../obj/ed
4
5all: build test
6	@echo done
7
8build: mkscripts.sh
9	@echo building test scripts...
10	@chmod +x mkscripts.sh
11	@mkscripts.sh ${ED}
12
13test: build ckscripts.sh
14	@echo running test scripts...
15	@chmod +x ckscripts.sh
16	@ckscripts.sh ${ED}
17
18clean:
19	rm -f *.ed *.[oz] *~
20