summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Marek Glogowski <glogow@fbihome.de>2020-07-29 23:47:05 +0000
committerJan-Marek Glogowski <glogow@fbihome.de>2020-07-29 23:47:05 +0000
commit6eac83ba340d4f3916fe7fa56c303b9b7b9fa8fb (patch)
tree5d547c18d54b4846d6756099bdaf255059347114
parent2189ce5a648136354811a8a6dfc928fd956b2830 (diff)
downloadnss-hg-6eac83ba340d4f3916fe7fa56c303b9b7b9fa8fb.tar.gz
Bug 1653975 - Set "all" as the default Makefile target r=jcj,rrelyea
Just reorder the rules in manifest.mn, so all is again the first rule. This restores pre-3.53 Makefile defaults. Differential Revision: https://phabricator.services.mozilla.com/D85195
-rw-r--r--manifest.mn18
1 files changed, 11 insertions, 7 deletions
diff --git a/manifest.mn b/manifest.mn
index dada8abab..fbc420a95 100644
--- a/manifest.mn
+++ b/manifest.mn
@@ -12,17 +12,21 @@ RELEASE = nss
DIRS = coreconf lib cmd cpputil gtests
-lib: coreconf
-cmd: lib
-cpputil: lib
-gtests: cmd cpputil
-
HAVE_ALL_TARGET := 1
+#
+# make sure all is the first (default) target
+#
+all: prepare_build
+ $(MAKE) libs
+
prepare_build:
# no real way to encode these in any sensible way
$(MAKE) -C coreconf/nsinstall program
$(MAKE) export
-all: prepare_build
- $(MAKE) libs
+lib: coreconf
+cmd: lib
+cpputil: lib
+gtests: cmd cpputil
+