add ui designer file

This commit is contained in:
Maciej Barć
2020-08-18 00:02:17 +02:00
parent 49f9ec2c44
commit ddeda5fae4
5 changed files with 348 additions and 6 deletions

View File

@ -1,18 +1,22 @@
BIN = leaden
.PHONY: all clean install uninstall distclean
.PHONY: all build clean install uninstall distclean
all:
@echo did nothing. try targets: install, or uninstall.
all: build
build:
pyuic5 -x $(BIN)/ui.ui -o $(BIN)/ui.py
clean:
$(RM) $(BIN)/ui.py
$(RM) -dr $(BIN).egg-info
$(RM) -dr $(BIN)/__pycache__
$(RM) -dr build
$(RM) -dr dist
$(RM) -dr $(BIN)/__pycache__
install: