diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d46d6a2 --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +# vim: foldmethod=marker +# {{{ License header: GPLv2+ +# This file is part of fedora-easy-karma. +# +# Fedora-easy-karma 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. +# +# Fedora-easy-karma 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 fedora-easy-karma. If not, see <http://www.gnu.org/licenses/>. +# }}} + +prefix=/usr/local +bindir=$(prefix)/bin + +install: + install -D -p -m 755 fedora-easy-karma.py $(DESTDIR)$(bindir)/fedora-easy-karma |