diff options
| author | Michael Reed <m.reed@mykolab.com> | 2015-06-04 04:40:18 -0400 |
|---|---|---|
| committer | Michael Reed <m.reed@mykolab.com> | 2015-06-04 04:40:18 -0400 |
| commit | b18acc17f2f36babb9aa0ed7d6ef8608c6a9d9e8 (patch) | |
| tree | d89f3c9f6294382ea96d07a583789513bce13a68 /Makefile | |
| parent | 11129f3f47b6481621a2705847af68b7cea3bb3e (diff) | |
| download | vis-b18acc17f2f36babb9aa0ed7d6ef8608c6a9d9e8.tar.gz vis-b18acc17f2f36babb9aa0ed7d6ef8608c6a9d9e8.tar.xz | |
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 (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
