"Fossies" - the Fresh Open Source Software Archive

Member "btn4ws-0.7.0/Makefile" (5 Jan 2008, 1207 Bytes) of package /linux/privat/old/btn4ws-0.7.0.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 # Makefile for btn4ws.py
    2 #
    3 # copyright (c) 1999-2006 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
    8 # it 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,
   13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
   14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   15 # GNU 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
   19 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
   20 #
   21 # version: $Id: Makefile 8 2007-12-04 13:58:29Z jan $
   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