diff options
| author | Ben Harris <bjh21@bjh21.me.uk> | 2004-09-19 13:50:36 +0000 |
|---|---|---|
| committer | Ben Harris <bjh21@bjh21.me.uk> | 2004-09-19 13:50:36 +0000 |
| commit | a64b4bc6fb8c48d23c75bb7ca6d1e5d96566c237 (patch) | |
| tree | d316cd3ba529d0e4690e6d12246edd02904b5285 | |
| parent | f7ec9cb92caf8a57e144a4b3feb9c0f1f586feea (diff) | |
| download | halibut-a64b4bc6fb8c48d23c75bb7ca6d1e5d96566c237.zip halibut-a64b4bc6fb8c48d23c75bb7ca6d1e5d96566c237.tar.gz halibut-a64b4bc6fb8c48d23c75bb7ca6d1e5d96566c237.tar.bz2 halibut-a64b4bc6fb8c48d23c75bb7ca6d1e5d96566c237.tar.xz | |
Use "$(MAKE)" for sub-makes, so as to handle systems whose default "make"
isn't GNU Make.
[originally from svn r4548]
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -42,15 +42,15 @@ endif all install: @test -d $(BUILDDIR) || mkdir $(BUILDDIR) - @make -C $(BUILDDIR) -f ../Makefile $@ REALBUILD=yes + @$(MAKE) -C $(BUILDDIR) -f ../Makefile $@ REALBUILD=yes spotless: topclean @test -d $(BUILDDIR) || mkdir $(BUILDDIR) - @make -C $(BUILDDIR) -f ../Makefile spotless REALBUILD=yes + @$(MAKE) -C $(BUILDDIR) -f ../Makefile spotless REALBUILD=yes clean: topclean @test -d $(BUILDDIR) || mkdir $(BUILDDIR) - @make -C $(BUILDDIR) -f ../Makefile clean REALBUILD=yes + @$(MAKE) -C $(BUILDDIR) -f ../Makefile clean REALBUILD=yes # Remove Halibut output files in the source directory (may # have been created by running, for example, `build/halibut |