forked from D4san/MultiREx-public
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
22 lines (18 loc) · 638 Bytes
/
Copy pathmakefile
File metadata and controls
22 lines (18 loc) · 638 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#########################################
# __ __ _ _ _ ___ ___ #
# | \/ |_ _| | |_(_) _ \ __|_ __ #
# | |\/| | || | | _| | / _|\ \ / #
# |_| |_|\_,_|_|\__|_|_|_\___/_\_\ #
# Planetary spectra generator #
#########################################
clean:
@find . -name '*~' -delete
@find . -name '__pycache__' -type d | xargs rm -fr
@find . -name '*.egg-info' -type d | xargs rm -fr
cleandist:
@rm -rf dist/*.*
cleanall:clean cleandist
#Example: make release RELMODE=release VERSION=0.2.0.2
release:
@echo "Releasing a new version..."
@bash -r bin/release.sh $(RELMODE) $(VERSION)