-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from trivedigaurav/maintenance
Maintenance merge
- Loading branch information
Showing
37 changed files
with
2,417 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
PYTHON = python | ||
CHECKSCRIPT = plyer/tools/pep8checker/pep8kivy.py | ||
PLYER_DIR = plyer/ | ||
|
||
build: | ||
$(PYTHON) setup.py build_ext --inplace | ||
|
||
force: | ||
$(PYTHON) setup.py build_ext --inplace -f | ||
|
||
debug: | ||
$(PYTHON) setup.py build_ext --inplace -f -g | ||
|
||
pdf: | ||
$(MAKE) -C docs latex && make -C docs/build/latex all-pdf | ||
|
||
html: | ||
env USE_EMBEDSIGNATURE=1 $(MAKE) force | ||
$(MAKE) -C docs html | ||
|
||
style: | ||
$(PYTHON) $(CHECKSCRIPT) $(PLYER_DIR) | ||
|
||
stylereport: | ||
$(PYTHON) $(CHECKSCRIPT) -html $(PLYER_DIR) | ||
|
||
hook: | ||
# Install pre-commit git hook to check your changes for styleguide | ||
# consistency. | ||
cp plyer/tools/pep8checker/pre-commit.githook .git/hooks/pre-commit | ||
chmod +x .git/hooks/pre-commit | ||
|
||
install: | ||
python setup.py install | ||
|
||
clean: | ||
-rm -rf docs/build | ||
-rm -rf build | ||
-find plyer -iname '*.so' -exec rm {} \; | ||
-find plyer -iname '*.pyc' -exec rm {} \; | ||
-find plyer -iname '*.pyo' -exec rm {} \; | ||
|
||
distclean: clean | ||
-git clean -dxf -e debian |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.