-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
34 lines (28 loc) · 904 Bytes
/
makefile
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
# This is a comment.
# Important: You *must* indent using <TAB>s, not spaces.
#
# For more information, please see
# - https://www.gnu.org/software/make/manual/make.html
#
# General syntax:
# targets : prerequisites; recipes
# <TAB>recipe
#
# - Commands starting with
# "-" are ignoring their exit-code.
# "@" do not echo the command itself.
#
# - make starts a new shell process for each recipe line.
# Thus shell variables, even exported environment variables, cannot propagate upwards.
# Therefore better concatenate your multiline-commands with ";\" into a single line.
# include re-usable makefiles
-include .make/*.mk
.PHONY: install ## full initial installation
install: create-dirs dotenv-install poetry-install symlink-venv-dirs
# .PHONY: publish-pypi ## publish to pypi
# publish-pypi:
# git fetch --tags
# git co x.y
# poery build
# poetry publish
# git co main