Skip to content

Commit

Permalink
Parallelize code generation for example apps
Browse files Browse the repository at this point in the history
Ref. eng/recordflux/RecordFlux#1449
  • Loading branch information
treiher committed Nov 10, 2023
1 parent 2139ff0 commit da56b13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ generate:
tools/generate_spark_test_code.py

generate_apps:
$(foreach app,$(APPS),$(MAKE) -C examples/apps/$(app) generate || exit;)
$(foreach app,$(APPS),($(MAKE) -C examples/apps/$(app) generate || exit) & $(app)_pid=$$!;) $(foreach app,$(APPS),wait $$$(app)_pid;)

.PHONY: doc html_doc pdf_doc

Expand Down

0 comments on commit da56b13

Please sign in to comment.