1
0
Fork 0

Fixed makefile.

dev
Franco Masotti 2020-10-17 19:28:33 +02:00
parent f759a26c9f
commit 252f5635b9
Signed by: frnmst
GPG Key ID: 24116ED85666780A
2 changed files with 10 additions and 6 deletions

4
CONTRIBUTING.rst Normal file
View File

@ -0,0 +1,4 @@
Contributing
============
See https://frnmst.github.io/fpydocs/contributing.html

View File

@ -4,20 +4,20 @@
#
# Copyright (C) 2020 frnmst (Franco Masotti) <franco.masotti@live.com>
#
# This file is part of automated-tasks.
# This file is part of fpydocs.
#
# automated-tasks is free software: you can redistribute it and/or modify
# fpydocs is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# automated-tasks is distributed in the hope that it will be useful,
# fpydocs is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with automated-tasks. If not, see <http://www.gnu.org/licenses/>.
# along with fpydocs. If not, see <http://www.gnu.org/licenses/>.
#
export PACKAGE_NAME=fpydocs
@ -31,7 +31,7 @@ install:
@echo "setup not available for this project"
uninstall:
pip3 install $(PACKAGE_NAME)
@echo "setup not available for this project"
install-dev:
pipenv install --dev
@ -47,4 +47,4 @@ clean:
rm -rf build dist *.egg-info
pipenv run $(MAKE) -C docs clean
.PHONY: default pep doc install-dev uninstall-dev clean
.PHONY: default doc install uninstall install-dev uninstall-dev test clean