From: Gilles Depeyrot Date: Thu, 18 Oct 2001 21:39:50 +0000 (+0000) Subject: use $(MAKE) instead of make X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/cf248c80a3d63712e31d81629f8b18d24d0b980d?ds=inline use $(MAKE) instead of make git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12076 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/Makefile.in b/contrib/Makefile.in index 59844c4e6f..34f9fdfd4a 100644 --- a/contrib/Makefile.in +++ b/contrib/Makefile.in @@ -3,13 +3,13 @@ # all: - cd src; make + cd src; $(MAKE) clean: - cd src; make clean - cd samples; make clean - cd utils; make clean + cd src; $(MAKE) clean + cd samples; $(MAKE) clean + cd utils; $(MAKE) clean samples: - cd samples; make + cd samples; $(MAKE)