diff options
author | Samuel Thibault <sthibault@hypra.fr> | 2018-03-14 13:37:31 +0100 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2018-04-21 00:00:24 +0200 |
commit | 77b09e7f921c42c41171e431813652db6de54679 (patch) | |
tree | 6703d8d513f4974e9709a10678a8e38eec44aefa /Makefile.in | |
parent | 9ebe4dec48a3677fced23ede58e31057b5db1df3 (diff) |
gbuild: add target rules for all modules
This allows to run e.g. make UIConfig to automatically run make
UIConfig_<module> for all modules.
Change-Id: Idc2c3a61fd38b486435366164031b4d51f68eebc
Reviewed-on: https://gerrit.libreoffice.org/51274
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index f149a7ee79b4..3cce173bcdf0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -165,6 +165,9 @@ gbuild_TARGETS := AllLangHelp \ $(foreach target,$(gbuild_TARGETS),$(target)_% $(foreach module,$(gbuild_modules),$(target)_$(module)/%)) UIConfig_modules/% %.genpatch: bootstrap fetch $(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@ +$(gbuild_TARGETS): + $(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@ + # # Clean # |