]> git.sur5r.net Git - i3/i3/commitdiff
Use $(MAKE) instead of hardcoding `make' in the Makefiles.
authorRaphael Kubo da Costa <rakuco@FreeBSD.org>
Sun, 9 Oct 2011 22:30:08 +0000 (19:30 -0300)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 10 Oct 2011 10:43:16 +0000 (11:43 +0100)
When one is using gmake or anything other than make itself, the same
command should be used in the Makefiles too.

Makefile
i3bar/Makefile

index 58fd01780d2f3b2f8d18c2ae90fa0423704f0f03..b2a39952f4e0a4c2185fa133623450cc8e7d301b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -104,8 +104,8 @@ dist: distclean
        # Only copy toplevel documentation (important stuff)
        mkdir i3-${VERSION}/docs
        # Pre-generate documentation
-       make -C docs
-       make -C i3bar/doc
+       $(MAKE) -C docs
+       $(MAKE) -C i3bar/doc
        # Cleanup τεχ output files
        find docs -regex ".*\.\(aux\|out\|log\|toc\|bm\|dvi\|log\)" -exec rm '{}' \;
        find docs -maxdepth 1 -type f ! \( -name "*.xcf" -or -name "*.svg" \) -exec cp '{}' i3-${VERSION}/docs \;
index a0c472bf49195afb7406ac82efd5070eecafbccd..2a05b14664b6452edf4d04e7af6b298472595bcf 100644 (file)
@@ -33,10 +33,10 @@ install: all
 
 clean:
        rm -f src/*.o
-       make -C doc clean
+       $(MAKE) -C doc clean
 
 distclean: clean
        rm -f i3bar
-       make -C doc distclean
+       $(MAKE) -C doc distclean
 
 .PHONY: install clean distclean doc