Use $(MAKE) instead of hardcoding `make' in the Makefiles.
When one is using gmake or anything other than make itself, the same command should be used in the Makefiles too.
This commit is contained in:
committed by
Michael Stapelberg
parent
99825ff268
commit
51116b46f1
@ -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
|
||||
|
Reference in New Issue
Block a user