vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

Makefile

(191B)


      1 test: ../../vis
      2 	@./test.sh
      3 
      4 ../../vis: ../../*.[ch]
      5 	@echo Compiling vis
      6 	@$(MAKE) -C ../..
      7 
      8 clean:
      9 	@echo cleaning
     10 	@find . -name '*.out' -o -name '*.err' | xargs rm -f
     11 
     12 .PHONY: clean test