forked from CGCookie/retopoflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
44 lines (27 loc) · 1.28 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
# ---------------------------------------------------------------
# Makefile for RetopoFlow
# Jonathan Williamson - <[email protected]>
# Originally created by Diego Gangl - <[email protected]>
# ---------------------------------------------------------------
# /./././././././././././././././././././././././././././././././
# SETTINGS
# /./././././././././././././././././././././././././././././././
NAME = RetopoFlow
VERSION = 1.2.4
BUILD_DIR = ../release
BUILD_FILE = $(BUILD_DIR)/$(NAME)_$(VERSION).zip
FILES = *.py help/* icons/* lib/*.py lib/classes/* op_contours/*.py op_loopslide/*.py op_eyedropper/*.py op_loopcut/*.py op_polypen/*.py op_polystrips/*.py
.DEFAULT_GOAL := build
# /./././././././././././././././././././././././././././././././
# TARGETS
# /./././././././././././././././././././././././././././././././
clean:
rm -rf $(BUILD_FILE)
@echo "Release zip deleted - " $(BUILD_FILE)
build:
mkdir -p $(BUILD_DIR)
mkdir -p $(BUILD_DIR)/$(NAME)
# cp -R $(FILES) $(BUILD_DIR)/$(NAME)
rsync -av --progress . $(BUILD_DIR)/$(NAME) --exclude="__pycache__" --exclude=".*/" --exclude="Makefile" --exclude="*.md" --exclude=".DS_Store" --exclude="*.orig" --exclude=".gitignore"
@echo
@echo $(NAME)" "$(VERSION) " is ready"