root/tags/omega-1.0.0-rc3/gui/BSDmakefile

Revision 687, 1.7 kB (checked in by raphael, 1 year ago)

Fixed (really) #442: Can't create or delete mysql databases

Line 
1 # ISPCP(tm) - Virtual Hosting Control System
2 # Copyright (c) 2001-2004 by moleSoftware GmbH
3 # http://www.molesoftware.com
4 #
5 #
6 # License:
7 #    This program is free software; you can redistribute it and/or
8 #    modify it under the terms of the MPL Mozilla Public License
9 #    as published by the Free Software Foundation; either version 1.1
10 #    of the License, or (at your option) any later version.
11 #
12 #    This program 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 #    MPL Mozilla Public License for more details.
16 #
17 #    You may have received a copy of the MPL Mozilla Public License
18 #    along with this program.
19 #
20 #    An on-line copy of the MPL Mozilla Public License can be found
21 #    http://www.mozilla.org/MPL/MPL-1.1.html
22 #
23 #
24 # The ISPCP Home Page is at:
25 #
26 #    http://www.isp-control.net
27
28 .include <../Makefile.inc>
29
30 SYSTEM_GUI_ROOT=$(SYSTEM_ROOT)/gui
31
32 install:
33         $(SYSTEM_MAKE_DIRS) $(SYSTEM_GUI_ROOT)
34         cp ./index.php $(SYSTEM_GUI_ROOT)/index.php
35         cp ./lostpassword.php $(SYSTEM_GUI_ROOT)/lostpassword.php
36         cp ./imagecode.php $(SYSTEM_GUI_ROOT)/imagecode.php
37         cp ./robots.txt $(SYSTEM_GUI_ROOT)/robots.txt
38         cp -R ./admin $(SYSTEM_GUI_ROOT)
39         cp -R ./reseller $(SYSTEM_GUI_ROOT)
40         cp -R ./client $(SYSTEM_GUI_ROOT)
41         cp -R ./include $(SYSTEM_GUI_ROOT)
42         cp -R ./domain_default_page $(SYSTEM_GUI_ROOT)
43         cp -R ./errordocs $(SYSTEM_GUI_ROOT)
44         cp -R ./themes $(SYSTEM_GUI_ROOT)
45         cp -R ./tools $(SYSTEM_GUI_ROOT)
46         cp -R ./orderpanel $(SYSTEM_GUI_ROOT)
47         cp -R ./phptmp $(SYSTEM_GUI_ROOT)
48 uninstall:
49         rm -rf $(SYSTEM_GUI_ROOT)
50
51 .PHONY: install uninstall
Note: See TracBrowser for help on using the browser.