vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit f041185d86cb47c7aebf7d4f609f18eb40cfb30d parent 889f9bda151d0498aa26ae349892bc139c869dc8 Author: Marc André Tanner <mat@brain-dump.org> Date: Mon, 21 Mar 2016 15:47:43 +0100 build: create empty config.mk if it does not exist This should fix `make local` (as used on travis-ci) and `make standalone` in cases where `configure` was not run successfully due to missing dependencies. Diffstat:
| M | Makefile | | | 3 | +++ |
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile @@ -31,6 +31,9 @@ all: vis config.h: cp config.def.h config.h +config.mk: + @touch $@ + vis: config.h config.mk *.c *.h ${CC} ${CFLAGS} ${CFLAGS_VIS} *.c ${LDFLAGS} ${LDFLAGS_VIS} -o $@