diff options
author | Sascha Schumann <sas@php.net> | 2000-01-26 21:58:46 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-01-26 21:58:46 +0000 |
commit | d0cb4d09aa778d2936943fa8c0c1283ef8bafb2a (patch) | |
tree | 719cae7a3fe2626130b23cd63b87dd2eeaf37408 | |
parent | 8b9765a91769bb5189ca547d6ba5b8d3e94cb6a5 (diff) | |
download | php-git-d0cb4d09aa778d2936943fa8c0c1283ef8bafb2a.tar.gz |
Allow shared libraries to be built everywhere
-rw-r--r-- | build/rules.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build/rules.mk b/build/rules.mk index c07b22ecab..f10117548e 100644 --- a/build/rules.mk +++ b/build/rules.mk @@ -88,7 +88,10 @@ distclean-recursive depend-recursive clean-recursive all-recursive install-recur done; \ if test "$$otarget" = "all" && test -z '$(targets)'; then ok=yes; fi; \ if test "$$ok" != "yes"; then $(MAKE) "$$otarget-p" || exit 1; fi; \ - fi; + fi; \ + if test -n '$(make_shared)'; then \ + $(MAKE) shared || exit 1; \ + fi; all-p: $(targets) install-p: $(targets) $(install_targets) |