From: Daniel Carl <danielcarl@gmx.de>
Date: Sat, 23 Mar 2013 11:15:37 +0000 (+0100)
Subject: Use the MFLAGS for every make call to a subdirectory.
X-Git-Url: https://git.owens.tech/editable-focus.html/editable-focus.html/git?a=commitdiff_plain;h=f5a83dbbc761c8e7bc64b87e1dd0b2e20c1d8aca;p=vimb.git

Use the MFLAGS for every make call to a subdirectory.
---

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