Skip to content

Commit

Permalink
Remove unnecessary deps from some make rules (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
whitphx authored Oct 4, 2022
1 parent 19cead4 commit aefd86b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ $(GIT_SUBMODULES): %/.git: .gitmodules

.PHONY: mountable
mountable: $(mountable)
$(mountable): packages/mountable/src/*.ts packages/mountable/src/*.tsx $(kernel) $(streamlit_wheel)
$(mountable): packages/mountable/src/*.ts packages/mountable/src/*.tsx $(kernel)
cd packages/mountable; \
yarn build
@touch $@

.PHONY: sharing
sharing: $(sharing)
$(sharing): packages/sharing/src/*.ts packages/sharing/src/*.tsx $(kernel) $(streamlit_wheel) $(sharing-common) yarn_install
$(sharing): packages/sharing/src/*.ts packages/sharing/src/*.tsx $(kernel) $(sharing-common) yarn_install
cd packages/sharing; \
yarn build
@touch $@
Expand All @@ -71,7 +71,7 @@ $(sharing-editor): packages/sharing-editor/src/*.ts packages/sharing-editor/src/

.PHONY: playground
playground: $(playground)
$(playground): packages/playground/src/*.ts packages/playground/src/*.tsx packages/playground/public/* $(kernel) $(streamlit_wheel)
$(playground): packages/playground/src/*.ts packages/playground/src/*.tsx packages/playground/public/* $(kernel)
cd packages/playground; \
yarn build
@touch $@
Expand Down

0 comments on commit aefd86b

Please sign in to comment.