From 252f5635b9c05b3076cd0cd15a6fa18416e27b4e Mon Sep 17 00:00:00 2001 From: Franco Masotti Date: Sat, 17 Oct 2020 19:28:33 +0200 Subject: [PATCH] Fixed makefile. --- CONTRIBUTING.rst | 4 ++++ Makefile | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) create mode 100644 CONTRIBUTING.rst diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst new file mode 100644 index 0000000..6d50267 --- /dev/null +++ b/CONTRIBUTING.rst @@ -0,0 +1,4 @@ +Contributing +============ + +See https://frnmst.github.io/fpydocs/contributing.html diff --git a/Makefile b/Makefile index 4eb23f6..9a88f5b 100644 --- a/Makefile +++ b/Makefile @@ -4,20 +4,20 @@ # # Copyright (C) 2020 frnmst (Franco Masotti) # -# 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 . +# along with fpydocs. If not, see . # 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