Skip to content

Commit

Permalink
ci: fix makefile build of swift app
Browse files Browse the repository at this point in the history
  • Loading branch information
metaclips committed Dec 14, 2023
1 parent c11c9a1 commit 5042ba3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ clean: typescript_clean rust_clean elixir_clean
very_clean: typescript_very_clean rust_very_clean elixir_very_clean

elixir_%:
@cd implementations/elixir && $(MAKE) $(@:elixir_%=%)
$(MAKE) -C implementations/elixir $(@:elixir_%=%)

rust_%:
$(MAKE) -f implementations/rust/Makefile $(@:rust_%=%)
$(MAKE) -C implementations/rust $(@:rust_%=%)

This comment has been minimized.

Copy link
@etorreborre

etorreborre Dec 15, 2023

Member

@metaclips any reason why you needed to revert my change in #7136? Because with this make rust_test in the root directory does not work for example.


swift_%:
$(MAKE) -f implementations/swift/Makefile $(@:swift_%=%)
$(MAKE) -C implementations/swift $(@:swift_%=%)

typescript_%:
@cd implementations/typescript && $(MAKE) $(@:typescript_%=%)
$(MAKE) -C implementations/typescript $(@:typescript_%=%)

.PHONY: \
build build_release test lint clean very_clean \
Expand Down

0 comments on commit 5042ba3

Please sign in to comment.