# @package      hubzero-cms-setup
# @file         Makefile
# @author       Nicholas J. Kisseberth <nkissebe@purdue.edu>
# @copyright    Copyright (c) 2010-2012 HUBzero Foundation, LLC.
# @license      http://www.gnu.org/licenses/lgpl-3.0.html LGPLv3
#
# Copyright (c) 2010-2012 HUBzero Foundation, LLC.
#
# This file is part of: The HUBzero(R) Platform for Scientific Collaboration
#
# The HUBzero(R) Platform for Scientific Collaboration (HUBzero) is free
# software: you can redistribute it and/or modify it under the terms of
# the GNU Lesser General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# HUBzero 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
# HUBzero is a registered trademark of HUBzero Foundation, LLC.

USRSHAREDIR=$(DESTDIR)/usr/share
ETCDIR=$(DESTDIR)/etc

default all build:
	@true

install:
	install --mode 0644 -D old-default-hub-db.sql $(USRSHAREDIR)/hubzero-cms-setup/old-default-hub-db.sql
	install --mode 0644 -D admin_user.sql $(USRSHAREDIR)/hubzero-cms-setup/admin_user.sql
	install --mode 0644 -D hubrepo_user.sql $(USRSHAREDIR)/hubzero-cms-setup/hubrepo_user.sql
	install --mode 0644 -D groups.sql $(USRSHAREDIR)/hubzero-cms-setup/groups.sql
	install --mode 0644 -D configuration.php.tmpl $(USRSHAREDIR)/hubzero-cms-setup/configuration.php.tmpl
	install --mode 0644 -D make_joomla_password.php.tmpl $(USRSHAREDIR)/hubzero-cms-setup/make_joomla_password.php.tmpl
	install --mode 0644 -D get_tools_params.sql $(USRSHAREDIR)/hubzero-cms-setup/get_tools_params.sql
	install --mode 0644 -D get_contrib_params.sql $(USRSHAREDIR)/hubzero-cms-setup/get_contrib_params.sql
	install --mode 0644 -D clean_params.sh $(USRSHAREDIR)/hubzero-cms-setup/clean_params.sh

configure:
	@true

clean:
	@true

	