#  Makefile - Frontend for SAFT for X11
#  Copyright (c) 1999,2006  Joey Schulze <joey@infodrom.org>
#
#  This file is part of the Gerstensaft package.
#
#  This program 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.
#
#  This program 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 this program; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.

prefix = /usr/local
PIXMAP_DIR=$(prefix)/share/gerstensaft
PIXMAP_WM_DIR=$(PIXMAP_DIR)

# Add pixmaps to $(FILES) and $(DESTFILES)
FILES=dir.xpm doc.xpm linkdir.xpm linkfile.xpm updir.xpm gerstensaft.xpm
FILES_WM=beer.xpm beer-mini.xpm

ifeq ($(shell whoami),root)
install=install -o root -g root
else
install=install
endif

clean:

install: install_dirs install_files

install_dirs:
	test -d $(PIXMAP_DIR) || $(install) -d -m 755 $(PIXMAP_DIR)
	test -d $(PIXMAP_WM_DIR) || $(install) -d -m 755 $(PIXMAP_WM_DIR)

install_files:
	$(install) -m 644 $(FILES) $(PIXMAP_DIR)
	$(install) -m 644 $(FILES_WM) $(PIXMAP_WM_DIR)
