vis

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

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

Makefile

(186B)


      1 all: clean ../../vis test
      2 
      3 ../../vis: ../../*.[ch]
      4 	@echo Compiling vis
      5 	@$(MAKE) -C ../..
      6 
      7 clean:
      8 	@rm -f *.out *.err
      9 
     10 test:
     11 	@./test.sh
     12 
     13 %: %.in
     14 	@./test.sh $@
     15 
     16 .PHONY: all clean test