vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 2f1ca752d0db1dbeefe76b8caac0fca5df4af720 parent 5ff3ca8b0bbf9d9ddbe1d730edd8e7a4530e81a6 Author: Marc André Tanner <mat@brain-dump.org> Date: Tue, 2 Sep 2014 08:16:52 +0200 Fix Makefile Diffstat:
| M | Makefile | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile @@ -1,8 +1,8 @@ include config.mk -SRC += vis.c colors.c window.c text.c text-motions.c text-objects.c register.c -HDR = ${SRC:.c=.h} util.h config.def.h -SRC += main.c +SRC = vis.c window.c text.c text-motions.c text-objects.c register.c +HDR := ${SRC:.c=.h} util.h config.def.h +SRC += main.c colors.c OBJ = ${SRC:.c=.o} ALL = ${SRC} ${HDR} config.mk Makefile LICENSE README vis.1