vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
Makefile
(255B)
1 test: ../../vis ../util/keys
2 @./test.sh
3
4 ../../vis: ../../*.[ch]
5 @echo Compiling vis
6 @$(MAKE) -C ../..
7
8 ../util/keys: ../util/keys.c
9 @$(MAKE) -C ../util
10
11 clean:
12 @echo cleaning
13 @find . -name '*.out' -o -name '*.err' | xargs rm -f
14
15 .PHONY: clean test