Skip to content

Commit

Permalink
Bug 1653975 - Set "all" as the default Makefile target r=jcj,rrelyea
Browse files Browse the repository at this point in the history
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

--HG--
extra : moz-landing-system : lando
  • Loading branch information
jmglogow committed Jul 29, 2020
1 parent 41d506c commit 4ba0631
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions manifest.mn
Expand Up @@ -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

0 comments on commit 4ba0631

Please sign in to comment.