changeset 14:07d74b88ac8d

do not invoke make on the PyQtLib, byte-compiling is done in a single step from dist.sh. Make sure that python3 is used everywhere
author Dirk Olmes <dirk@xanthippe.ping.de>
date Mon, 22 Sep 2014 06:11:22 +0200
parents a999a074d2ee
children d8958cb11043
files Makefile dist.sh
diffstat 2 files changed, 3 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Sun Sep 21 15:25:57 2014 +0200
+++ b/Makefile	Mon Sep 22 06:11:22 2014 +0200
@@ -1,12 +1,9 @@
-.PHONY: remote_viewer pyqt_lib clean
+.PHONY: remote_viewer clean
 
-all: remote_viewer pyqt_lib
+all: remote_viewer
 	
 remote_viewer:
 	$(MAKE) -C RemoteViewer
 
-pyqt_lib:
-	$(MAKE) -C PyQtLib
-
 clean:
 	rm $(ZIP_FILE) 
--- a/dist.sh	Sun Sep 21 15:25:57 2014 +0200
+++ b/dist.sh	Mon Sep 22 06:11:22 2014 +0200
@@ -9,7 +9,7 @@
 # make sure all resources are generated before byte-compiling
 make
 
-python -m compileall .
+python3 -m compileall .
 
 for file in `find . -name \*\.pyc -print`; do
 	echo $file