forked from chirtz/blinkgui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
24 lines (22 loc) · 658 Bytes
/
Makefile
File metadata and controls
24 lines (22 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
SHELL := /bin/bash
cur-dir := $(shell pwd)
deb:
@ python3 setup.py --command-packages=stdeb.command sdist_dsc -d out;
@ for x in `ls -d out/blink*/`; do \
cp ../blink-deploy/general/* $$x/debian/; \
cd $$x; \
debuild; \
cd ${cur-dir}; \
rm -r dist; \
rm *.tar.gz; \
cp out/*.deb .; \
rm -rf out; \
done
ui:
pyside-rcc -py3 res/res.qrc -o res_rc.py
pyside-uic mainwindow.ui -o mainwindow.py
pyside-uic color_transition_dialog.ui -o color_transition_dialog.py
pyside-uic lg_dialog.ui -o lg_dialog.py
pyside-uic text_dialog.ui -o text_dialog.py
pyside-uic ethernet_dialog.ui -o ethernet_dialog.py
pyside-lupdate blinkGui.pro