2007-12-03 21:13:00 +01:00
|
|
|
# Makefile for btn4ws.py
|
|
|
|
#
|
|
|
|
# copyright (c) 1999-2006 Jan Dittberner <jan@dittberner.info>
|
|
|
|
#
|
|
|
|
# This file is part of btn4ws.
|
|
|
|
#
|
|
|
|
# btn4ws 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.
|
|
|
|
#
|
|
|
|
# btn4ws 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 btn4ws; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
#
|
2007-12-03 21:59:44 +01:00
|
|
|
# version: $Id$
|
2007-12-03 21:13:00 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
install:
|
|
|
|
install -d $(PREFIX)/$$(gimptool --gimpplugindir)/plug-ins
|
|
|
|
install btn4ws.py $(PREFIX)/$$(gimptool --gimpplugindir)/plug-ins
|
|
|
|
|
|
|
|
install-user:
|
|
|
|
gimptool --install-bin btn4ws.py
|
|
|
|
|
|
|
|
clean:
|
2007-12-04 14:34:04 +01:00
|
|
|
find . -type f -name '*~' -exec rm {} \;
|
2007-12-03 21:13:00 +01:00
|
|
|
|
|
|
|
dist:
|
2007-12-04 14:34:04 +01:00
|
|
|
python setup.py sdist
|
2007-12-03 21:13:00 +01:00
|
|
|
|
|
|
|
.PHONY: install install-user clean dist
|