| 1 |
# ispCP ω (OMEGA) a Virtual Hosting Control Panel |
|---|
| 2 |
# Copyright (c) 2001-2006 by moleSoftware GmbH |
|---|
| 3 |
# http://www.molesoftware.com |
|---|
| 4 |
# Copyright (c) 2006-2008 by isp Control Panel |
|---|
| 5 |
# http://isp-control.net |
|---|
| 6 |
# |
|---|
| 7 |
# |
|---|
| 8 |
# License: |
|---|
| 9 |
# This program is free software; you can redistribute it and/or |
|---|
| 10 |
# modify it under the terms of the MPL Mozilla Public License |
|---|
| 11 |
# as published by the Free Software Foundation; either version 1.1 |
|---|
| 12 |
# of the License, or (at your option) any later version. |
|---|
| 13 |
# |
|---|
| 14 |
# This program is distributed in the hope that it will be useful, |
|---|
| 15 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 16 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 17 |
# MPL Mozilla Public License for more details. |
|---|
| 18 |
# |
|---|
| 19 |
# You may have received a copy of the MPL Mozilla Public License |
|---|
| 20 |
# along with this program. |
|---|
| 21 |
# |
|---|
| 22 |
# An on-line copy of the MPL Mozilla Public License can be found |
|---|
| 23 |
# http://www.mozilla.org/MPL/MPL-1.1.html |
|---|
| 24 |
# |
|---|
| 25 |
# |
|---|
| 26 |
# The ispCP ω Home Page is at: |
|---|
| 27 |
# |
|---|
| 28 |
# http://isp-control.net |
|---|
| 29 |
|
|---|
| 30 |
.ifndef INST_PREF |
|---|
| 31 |
INST_PREF=/tmp/ispcp |
|---|
| 32 |
.endif |
|---|
| 33 |
|
|---|
| 34 |
HOST_OS=freebsd |
|---|
| 35 |
|
|---|
| 36 |
ROOT_CONF=$(INST_PREF)/usr/local/etc |
|---|
| 37 |
SYSTEM_ROOT=$(INST_PREF)/usr/local/www/ispcp |
|---|
| 38 |
SYSTEM_CONF=$(INST_PREF)/usr/local/etc/ispcp |
|---|
| 39 |
SYSTEM_LOG=$(INST_PREF)/var/log/ispcp |
|---|
| 40 |
SYSTEM_APACHE_BACK_LOG=$(INST_PREF)/usr/local/www/logs/backup |
|---|
| 41 |
SYSTEM_VIRTUAL=$(INST_PREF)/usr/local/www/data |
|---|
| 42 |
SYSTEM_AWSTATS=$(INST_PREF)/usr/local/www/awstats |
|---|
| 43 |
SYSTEM_FCGI=$(INST_PREF)/usr/local/www/fcgi |
|---|
| 44 |
SYSTEM_MAIL_VIRTUAL=$(INST_PREF)/var/mail/virtual |
|---|
| 45 |
SYSTEM_MAKE_DIRS=/bin/mkdir -p |
|---|
| 46 |
|
|---|
| 47 |
.PHONY: install uninstall clean |
|---|