Skip to content

Commit

Permalink
use submake and skip printing directory changes
Browse files Browse the repository at this point in the history
  • Loading branch information
wkloucek committed Nov 16, 2021
1 parent 9b85b40 commit ab502c8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -178,31 +178,31 @@ endif
.PHONY: l10n-push
l10n-push:
@for extension in $(L10N_MODULES); do \
make -C $$extension l10n-push; \
$(MAKE) -C $$extension l10n-push; \
done

.PHONY: l10n-pull
l10n-pull:
@for extension in $(L10N_MODULES); do \
make -C $$extension l10n-pull; \
$(MAKE) -C $$extension l10n-pull; \
done

.PHONY: l10n-clean
l10n-clean:
@for extension in $(L10N_MODULES); do \
make -C $$extension l10n-clean; \
$(MAKE) -C $$extension l10n-clean; \
done

.PHONY: l10n-read
l10n-read:
@for extension in $(L10N_MODULES); do \
make -C $$extension l10n-read; \
$(MAKE) -C $$extension l10n-read; \
done

.PHONY: l10n-write
l10n-write:
@for extension in $(L10N_MODULES); do \
make -C $$extension l10n-write; \
$(MAKE) -C $$extension l10n-write; \
done

.PHONY: ci-format
Expand Down
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ docs-init:
@cd hugo && git remote add origin https://github.com/owncloud/owncloud.github.io
@cd hugo && git fetch --depth=1
@cd hugo && git checkout origin/source -f
@make -C hugo theme
@$(MAKE) -C hugo theme

.PHONY: docs-serve
docs-serve: docs-init docs-generate docs-copy ## serve docs with hugo
Expand Down
6 changes: 3 additions & 3 deletions idp/ui/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ build: vendor | src i18n ; $(info building identifier Webapp ...) @

.PHONY: src
src:
@$(MAKE) -C src
@$(MAKE) --no-print-directory -C src

.PHONY: i18n
i18n: vendor
@$(MAKE) -C i18n
@$(MAKE) --no-print-directory -C i18n

.PHONY: lint
lint: vendor ; $(info running eslint ...) @
Expand Down Expand Up @@ -58,7 +58,7 @@ clean:
@rm -rf node_modules
@rm -f .yarninstall

@$(MAKE) -C src clean
@$(MAKE) --no-print-directory -C src clean

.PHONY: version
version:
Expand Down
4 changes: 2 additions & 2 deletions idp/ui/src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ all: images

.PHONY: images
images:
@$(MAKE) -C images
@$(MAKE) --no-print-directory -C images

clean:
@$(MAKE) -C images clean
@$(MAKE) --no-print-directory -C images clean

0 comments on commit ab502c8

Please sign in to comment.