Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parallel build rc, nettle, wget, e2fsprogs #11

Open
wants to merge 1 commit into
base: 374.43_2-update
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions release/src/router/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@ else
endif

e2fsprogs: e2fsprogs/Makefile
$(MAKE) -C $@
$(MAKE) -C $@ $(PARALLEL_BUILD)

e2fsprogs-clean:
-@$(MAKE) -C e2fsprogs clean
Expand Down Expand Up @@ -1290,6 +1290,8 @@ wb: openssl libxml2 curl
push_log: wb

rc: shared nvram$(BCMEX)libbcmcrypto libdisk $(PUSH_LOG) $(if $(RTCONFIG_QTN),libqcsapi_client) $(if $(CONFIG_LIBBCM),libbcm)
@$(SEP)
@$(MAKE) -C rc $(PARALLEL_BUILD)

rc-install:
$(MAKE) -C rc INSTALLDIR=$(INSTALLDIR)/rc install
Expand Down Expand Up @@ -1519,9 +1521,9 @@ nettle/stamp-h1:
@touch nettle/stamp-h1

nettle: nettle/stamp-h1
$(SEP)
$(MAKE) -C nettle
$(MAKE) -C nettle install
@$(SEP)
@$(MAKE) -C nettle $(PARALLEL_BUILD)
@$(MAKE) -C nettle install

nettle-clean:
-@$(MAKE) -C nettle clean
Expand Down Expand Up @@ -3901,7 +3903,7 @@ wget/Makefile: wget/Makefile.in
LDFLAGS="$(EXTRALDFLAGS) -Wl,--gc-sections -L$(TOP)/openssl-1.1 -lssl -lcrypto -L$(TOP)/zlib -lz -lpthread"

wget: openssl-1.1 zlib wget/Makefile
$(MAKE) -C $@
$(MAKE) -C $@ $(PARALLEL_BUILD)

wget-clean:
[ ! -f wget/Makefile ] || $(MAKE) -C wget distclean
Expand Down