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