-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
49 lines (43 loc) · 1.46 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Makefile for AA Intel Tool
# Variables
appname = aa-intel-tool
appname_verbose = AA Intel Tool
package = aa_intel_tool
# Default goal
.DEFAULT_GOAL := help
# Graph models
.PHONY: graph_models
graph_models:
@echo "Creating a graph of the models"
@python ../myauth/manage.py \
graph_models \
$(package) \
--arrow-shape normal \
-o $(appname)-models.png
# Prepare a new release
# Update the graph of the models, translation files and the version in the package
.PHONY: prepare-release
prepare-release: graph_models translations
@echo ""
@echo "Preparing a release"
@read -p "New Version Number: " new_version; \
sed -i "/__version__/c\__version__ = \"$$new_version\"" $(package)/__init__.py; \
echo "Updated version in $(TEXT_BOLD)$(package)/__init__.py$(TEXT_BOLD_END)"
# Help
.PHONY: help
help::
@echo ""
@echo "$(TEXT_BOLD)$(appname_verbose)$(TEXT_BOLD_END) Makefile"
@echo ""
@echo "$(TEXT_BOLD)Usage:$(TEXT_BOLD_END)"
@echo " make [command]"
@echo ""
@echo "$(TEXT_BOLD)Commands:$(TEXT_BOLD_END)"
@echo " $(TEXT_UNDERLINE)General:$(TEXT_UNDERLINE_END)"
@echo " graph_models Create a graph of the models"
@echo " help Show this help message"
@echo " prepare-release Prepare a release and update the version in '$(package)/__init__.py'."
@echo " Please make sure to update the 'CHANGELOG.md' file accordingly."
@echo ""
# Include the configurations
include .make/conf.d/*.mk