From b18acc17f2f36babb9aa0ed7d6ef8608c6a9d9e8 Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Thu, 4 Jun 2015 04:40:18 -0400 Subject: 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0477510..31dd931 100644 --- 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 -- cgit v1.2.3