From f5a83dbbc761c8e7bc64b87e1dd0b2e20c1d8aca Mon Sep 17 00:00:00 2001
From: Daniel Carl <danielcarl@gmx.de>
Date: Sat, 23 Mar 2013 12:15:37 +0100
Subject: [PATCH] Use the MFLAGS for every make call to a subdirectory.

---
 Makefile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index 620dadc..d0c4e2b 100644
--- a/Makefile
+++ b/Makefile
@@ -36,19 +36,19 @@ $(DTARGET): $(DOBJ)
 	@$(CC) -c -o $@ $< $(CPPFLAGS) $(DFLAGS)
 
 man:
-	@$(MAKE) -C doc man
+	@$(MAKE) $(MFLAGS) -C doc man
 
 install: $(TARGET)
 	install -d $(BINDIR)
 	install -m 755 $(TARGET) $(BINDIR)
-	@$(MAKE) -C doc install
+	@$(MAKE) $(MFLAGS) -C doc install
 
 uninstall:
 	$(RM) $(BINDIR)$(TARGET)
-	@$(MAKE) -C doc uninstall
+	@$(MAKE) $(MFLAGS) -C doc uninstall
 
 clean:
-	@$(MAKE) -C doc clean
+	@$(MAKE) $(MFLAGS) -C doc clean
 	$(RM) $(OBJ) $(DOBJ) $(TARGET) $(DTARGET) src/hint.js.h
 
 dist: distclean
-- 
2.20.1