mirror of https://github.com/kivy/kivy.git
Will rebuild cython code to build the latest docs
* fixes https://github.com/kivy/kivy/issues/2917
This commit is contained in:
parent
538363a626
commit
9612a08e27
|
@ -1,4 +1,3 @@
|
|||
kivy-already-built*
|
||||
.coverage
|
||||
.noseids
|
||||
Kivy.egg-info
|
||||
|
|
14
Makefile
14
Makefile
|
@ -31,15 +31,6 @@ endif
|
|||
|
||||
.PHONY: build force mesabuild pdf style stylereport hook test batchtest cover clean distclean theming
|
||||
|
||||
prebuild:
|
||||
ifeq ("$(wildcard kivy-already-built-for-$(PYTHON))","")
|
||||
@echo Building Kivy as it is not already done!
|
||||
$(PYTHON) setup.py $(BUILD_OPTS)
|
||||
touch kivy-already-built-for-$(PYTHON)
|
||||
else
|
||||
@echo Kivy is already built for \"$(PYTHON)\"!
|
||||
endif
|
||||
|
||||
build:
|
||||
$(PYTHON) setup.py $(BUILD_OPTS)
|
||||
|
||||
|
@ -72,10 +63,10 @@ ios:
|
|||
# Copy to python for iOS installation
|
||||
cp -R "iosbuild/usr/local/lib/python2.7/site-packages/kivy" "$(BUILDROOT)/python/lib/python2.7/site-packages"
|
||||
|
||||
pdf: prebuild
|
||||
pdf: build
|
||||
cd doc && $(MAKE) pdf
|
||||
|
||||
html: prebuild
|
||||
html: build
|
||||
cd doc && $(MAKE) html
|
||||
|
||||
html-embedded:
|
||||
|
@ -106,7 +97,6 @@ install:
|
|||
|
||||
clean:
|
||||
$(MAKE) -C doc clean
|
||||
-rm -f kivy-already-built*
|
||||
-rm -rf build
|
||||
-rm -rf htmlcov
|
||||
-rm -f .coverage
|
||||
|
|
Loading…
Reference in New Issue