From 81854d85ac7a825f430e925344176abfe3a16e55 Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Wed, 9 Nov 2022 07:35:40 +0900 Subject: Polish for distribution --- Makefile | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e9ac737 --- /dev/null +++ b/Makefile @@ -0,0 +1,38 @@ +# Makefile for fead +# Copyright (C) 2022 Nguyễn Gia Phong +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +SHELL = /bin/sh +PREFIX ?= /usr/local + +.PHONY: man all clean install uninstall + +man: src/fead.py doc/fead.h2m + help2man --name='advert generator from web feeds'\ + --include=doc/fead.h2m --output=doc/fead.1\ + --no-info src/fead.py + +all: man + +clean: + rm doc/fead.1 + +install: all + install -Dm 755 src/fead.py ${DESTDIR}${PREFIX}/bin/fead + install -Dm 644 doc/fead.1 ${DESTDIR}${PREFIX}/share/man/fead.1 + +uninstall: + rm ${DESTDIR}${PREFIX}/bin/fead + rm ${DESTDIR}${PREFIX}/share/man/fead.1 -- cgit 1.4.1