Loading python/Makefile +8 −1 Original line number Diff line number Diff line Loading @@ -15,12 +15,19 @@ ifeq "$(VERSION_RELEASE)" "" VERSION_RELEASE=undef endif # PASS the silent flag from make to setup.py SETUP_FLAG=-v ifeq "$(findstring s, $(MAKEFLAGS))" "s" SETUP_FLAG=-q endif all: build build: @echo '# -- AUTOMATICALLY CREATED DO NOT EDIT' > $(VERSION_FILE) @echo '__version__ = "$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_RELEASE)"' >> $(VERSION_FILE) @$(PYTHON) setup.py build @$(PYTHON) setup.py $(SETUP_FLAG) build install: @$(PYTHON) setup.py install --home $(DESTDIR) Loading Loading
python/Makefile +8 −1 Original line number Diff line number Diff line Loading @@ -15,12 +15,19 @@ ifeq "$(VERSION_RELEASE)" "" VERSION_RELEASE=undef endif # PASS the silent flag from make to setup.py SETUP_FLAG=-v ifeq "$(findstring s, $(MAKEFLAGS))" "s" SETUP_FLAG=-q endif all: build build: @echo '# -- AUTOMATICALLY CREATED DO NOT EDIT' > $(VERSION_FILE) @echo '__version__ = "$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_RELEASE)"' >> $(VERSION_FILE) @$(PYTHON) setup.py build @$(PYTHON) setup.py $(SETUP_FLAG) build install: @$(PYTHON) setup.py install --home $(DESTDIR) Loading