diff options
author | Erich Eckner <git@eckner.net> | 2016-05-04 11:14:03 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2016-05-04 13:08:24 +0200 |
commit | b0eb23c0930611889ed615bc2f431e30b35bbbbe (patch) | |
tree | bd469e9cc9797180b1eb9f14e3325cbfd6124617 /Makefile | |
parent | 7a3b06c77c3d515c613a1fc1e8ee95fe76428c59 (diff) | |
download | shutdownasap-b0eb23c0930611889ed615bc2f431e30b35bbbbe.tar.xz |
Makefile, manpage neu, Versionsupdatev0.2
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2eb0c1e --- /dev/null +++ b/Makefile @@ -0,0 +1,44 @@ +# +# shutdownasap - simple script for shutdown waiting for certain processes and files to disapear +# +# Copyright (c) 2015-2016 Erich Eckner <opensource at eckner dot net> +# +# This program 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 2 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, +# USA. +# + +DESTDIR = +ETCDIR = /etc +BINDIR = /usr/bin +MANDIR = /usr/share/man + +VERSION = 0.2 + +all: shutdownasap shutdownasap.conf shutdownasap.8 + +%: %.in + sed "s/#VERSION#/$(VERSION)/; s@#BINDIR#@$(BINDIR)@; s@#ETCDIR#@$(ETCDIR)@" $< > $@ + +.PHONY: install clean + +install: all + install -D -m0755 -t $(DESTDIR)$(BINDIR) shutdownasap + install -D -m0644 -t $(DESTDIR)$(MANDIR)/man8 shutdownasap.8 + install -D -m0644 -t $(DESTDIR)$(ETCDIR) shutdownasap.conf + +clean: + rm -f shutdownasap{,.8,.conf} + +# End of file |