|
Revision dbba0d71280f4ff436a0790befbda803e5dfbb01, 1.1 KB
(checked in by Jan Dittberner <jan@…>, 3 years ago)
|
|
update version and copyright
- update copyright years to include 2009 (fixes #22)
- checkin using LC_ALL=C and LANG=C (fixes #21)
- add a setup.cfg to make dev builds easily available
|
-
Property mode set to
100644
|
| Line | |
|---|
| 1 | # Makefile for btn4ws.py |
|---|
| 2 | # |
|---|
| 3 | # copyright (c) 1999-2009 Jan Dittberner <jan@dittberner.info> |
|---|
| 4 | # |
|---|
| 5 | # This file is part of btn4ws. |
|---|
| 6 | # |
|---|
| 7 | # btn4ws is free software; you can redistribute it and/or modify it |
|---|
| 8 | # under the terms of the GNU General Public License as published by |
|---|
| 9 | # the Free Software Foundation; either version 2 of the License, or |
|---|
| 10 | # (at your option) any later version. |
|---|
| 11 | # |
|---|
| 12 | # btn4ws is distributed in the hope that it will be useful, but |
|---|
| 13 | # WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 15 | # General Public License for more details. |
|---|
| 16 | # |
|---|
| 17 | # You should have received a copy of the GNU General Public License |
|---|
| 18 | # along with btn4ws; if not, write to the Free Software Foundation, |
|---|
| 19 | # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|
| 20 | # |
|---|
| 21 | # version: $Id$ |
|---|
| 22 | # |
|---|
| 23 | |
|---|
| 24 | GIMPTOOL = gimptool-2.0 |
|---|
| 25 | |
|---|
| 26 | install: |
|---|
| 27 | install -d $(PREFIX)/$$($(GIMPTOOL) --gimpplugindir)/plug-ins |
|---|
| 28 | install btn4ws.py $(PREFIX)/$$($(GIMPTOOL) --gimpplugindir)/plug-ins |
|---|
| 29 | |
|---|
| 30 | install-user: |
|---|
| 31 | $(GIMPTOOL) --install-bin btn4ws.py |
|---|
| 32 | |
|---|
| 33 | clean: |
|---|
| 34 | find . -type f -name '*~' -exec rm {} \; |
|---|
| 35 | |
|---|
| 36 | dist: |
|---|
| 37 | python setup.py sdist |
|---|
| 38 | |
|---|
| 39 | .PHONY: install install-user clean dist |
|---|