-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (24 loc) · 778 Bytes
/
Makefile
File metadata and controls
35 lines (24 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
.PHONY: install install-node compile lint test
# these targets should remain as they install pre-commit hooks
install-python:
poetry install
install-hooks: install-python
poetry run pre-commit install --install-hooks --overwrite
# these targets should be overwritten once you start coding
# They are needed for quality checks workflow
# install-hooks should remain as a target of install to ensure that pre-commit hooks are installed when the repo is set up
install: install-python install-hooks
echo "Not implemented yet"
install-node:
echo "Not implemented yet"
exit 1
compile:
echo "Not implemented yet"
exit 1
lint:
echo "Not implemented yet"
test:
echo "Not implemented yet"
# include common targets
%:
@$(MAKE) -f /usr/local/share/eps/Mk/common.mk $@