summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2017-06-20 03:18:54 -0700
committerKali Kaneko (leap communications) <kali@leap.se>2017-06-21 02:56:10 +0200
commitc82f23ccaf077dce350292c7f3b2948d61122bbe (patch)
treef28e03a6c9fd3790782b4941cf8ffe38f3c1b834 /Makefile
parent51011053093c87ca7ff2e024734578a5dce0dbfa (diff)
[pkg] improve Packages script
- use relative paths - there's still an absolute path (hardcoded, the REFERENCE FOLDER PATH). This should be changed (sed!) if we want to automate this for CI or for building in different environments: STILL NEEDS SOME MANUAL WORK. - Avoid deleting the build folders by default - Move the plist file to a subfolder
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 9b92e412..d4cbc171 100644
--- a/Makefile
+++ b/Makefile
@@ -4,10 +4,6 @@ DIST_VERSION = dist/bitmask-$(NEXT_VERSION)/
include pkg/pyinst/build.mk
include pkg/thirdparty/openvpn/build.mk
-clean:
- find . -type f -name "*.py[co]" -delete
- find . -type d -name "__pycache__" -delete
-
dev-mail:
pip install -e '.[mail]'
@@ -64,3 +60,7 @@ bundle_in_docker:
docker_container:
cd pkg/docker_bundle && docker build -t mybundle .
+
+clean:
+ find . -type f -name "*.py[co]" -delete
+ find . -type d -name "__pycache__" -delete