projects
/
gamesguru
/
ffpass.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
632653d
)
add `make deps` target
master
1/head
author
Shane Jaroch
<chown_tee@proton.me>
Thu, 22 Jan 2026 20:23:43 +0000
(15:23 -0500)
committer
Shane Jaroch
<chown_tee@proton.me>
Thu, 22 Jan 2026 20:23:43 +0000
(15:23 -0500)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index d9951e31a5f41cf2327205d5de61bb09e6af4bdb..d246140f9f131b9c5e5e639f0e54edbd85333a2a 100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-9,6
+9,11
@@
_help:
@grep "##" $(MAKEFILE_LIST) | grep -v IGNORE_ME | sed -e 's/##//' | column -t -s $$'\t'
+.PHONY: deps
+deps: ## Install runtime and dev dependencies
+ PIP_USER=0 pip install -r requirements.txt -r requirements-dev.txt
+
+
.PHONY: build
build: lint ## Build release
build: