Commit ec4fd722 authored by Zolnierczuk, Piotr's avatar Zolnierczuk, Piotr
Browse files

makefile fixes

parent e9b2c2f7
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
# Makefile for PySEN
PYTHON=python -u
PROJNAME=pysen

PYUIC:=$(shell command -v pyuic5 2> /dev/null)
ifeq ($(strip $(PYUIC)),)
@@ -9,6 +10,8 @@ ifeq ($(strip $(PYUIC)),)
$(error pyuic5 or pyuic4 are missing, check PyQt installation)
endif

PROJVER=$(shell $(PYTHON) -c "from pysen.revision import VERSION; print(VERSION)")
PROJECT=$(PROJNAME)-$(PROJVER)


.PHONY: all build build-ui build-docs dist install test runtest check clean clean-ui clean-docs distclean
@@ -42,7 +45,12 @@ clean: clean-ui clean-docs
	@rm -f lint.log

distclean: clean
	rm -rf build dist MANIFEST cachedir *.egg-info
	rm -rf build dist MANIFEST cachedir *.egg-info $(PROJECT).tar.gz

tarball:
	git archive --format=tar --prefix=$(PROJECT)/ HEAD > $(PROJECT).tar
	gzip -f $(PROJECT).tar



# "SUBSYSTEMS"
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
PySEN revision module
"""
import sys
__version__  = "0.7.0"
__version__  = "0.7.1"
__release__  = "dev1"
__date__     = "Feb 13, 2019"
#