vis

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

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

commit 65c9937771a2e99da784823b77d163c55c727629
parent 80e517ceff0d3426a1213dc1654a0329adf1be72
Author: Michael Reed <m.reed@mykolab.com>
Date:   Thu,  4 Jun 2015 04:40:18 -0400

Use $(MAKE) instead of directly calling `make`

This fixes `make debug` on OpenBSD (and possibly other systems) where
/usr/bin/make isn't GNU make.

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -12,7 +12,7 @@ vis: config.h config.mk *.c *.h @${CC} ${CFLAGS} *.c ${LDFLAGS} -o $@ debug: clean - @make CFLAGS='${DEBUG_CFLAGS}' + @$(MAKE) CFLAGS='${DEBUG_CFLAGS}' clean: @echo cleaning