diff options
author | Till Maas <opensource@till.name> | 2010-03-05 11:51:50 +0100 |
---|---|---|
committer | Till Maas <opensource@till.name> | 2010-03-05 11:51:50 +0100 |
commit | eaa17614f4a770f375b3e531f71450104d0c0960 (patch) | |
tree | 10e3aee633d8dbcb37e423fd5853ec8f5ee1f177 /Makefile | |
parent | 3a4d3e7b2ae57b31e538ab2fa246453376d0d481 (diff) | |
download | fedora-easy-karma-eaa17614f4a770f375b3e531f71450104d0c0960.tar.gz fedora-easy-karma-eaa17614f4a770f375b3e531f71450104d0c0960.tar.xz fedora-easy-karma-eaa17614f4a770f375b3e531f71450104d0c0960.zip |
add Makefile for simple installation
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 |