Skip to content

Commit

Permalink
chore: added local build specific targets
Browse files Browse the repository at this point in the history
  • Loading branch information
mgyorke committed Apr 17, 2024
1 parent ebcbe3f commit 33b0cd7
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -288,3 +288,16 @@ require-args:
ifndef ARGS
$(error cannot run: ARGS is undefined)
endif

# targets responsible for local dev environment
# install local dependencies
install-deps:
@bash $(WORKING_DIR)/scripts/install-dev-dependencies.sh

# trigger build using the local .venv for python
build-local: pre-build
@( \
source $(WORKING_DIR)/.venv/bin/activate; \
cd $(EXTENSIBLE_CLI_DIR); $(MAKE) build-full install bindir=$(WORKING_DIR)/$(BINARY_OUTPUT_FOLDER) USE_LEGACY_EXECUTABLE_NAME=1; \
)
$(MAKE) clean-package-files

0 comments on commit 33b0cd7

Please sign in to comment.