root/trunk/gui/BSDmakefile

Revision 1103, 1.8 kB (checked in by zothos, 5 months ago)

* Fixed #1173: autoresponders don't work
* Copyright and licence for every makefile
* Dropped the mta-cfg-setup.sh

Line 
1 #!/usr/bin/make -f
2 #
3 # ispCP ω (OMEGA) a Virtual Hosting Control Panel
4 # Copyright (c) 2001-2006 by moleSoftware GmbH
5 # http://www.molesoftware.com
6 # Copyright (c) 2006-2008 by isp Control Panel
7 # http://isp-control.net
8 #
9 #
10 # License:
11 #    This program is free software; you can redistribute it and/or
12 #    modify it under the terms of the MPL Mozilla Public License
13 #    as published by the Free Software Foundation; either version 1.1
14 #    of the License, or (at your option) any later version.
15 #
16 #    This program is distributed in the hope that it will be useful,
17 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
18 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 #    MPL Mozilla Public License for more details.
20 #
21 #    You may have received a copy of the MPL Mozilla Public License
22 #    along with this program.
23 #
24 #    An on-line copy of the MPL Mozilla Public License can be found
25 #    http://www.mozilla.org/MPL/MPL-1.1.html
26 #
27 #
28 # The ispCP ω Home Page is at:
29 #
30 #    http://isp-control.net
31 #
32
33 .ifdef $(OSTYPE)==FreeBSD
34 .include <../Makefile.fbsd>
35 .else
36 .include <../Makefile.inc>
37 .endif
38
39 SYSTEM_GUI_ROOT=$(SYSTEM_ROOT)/gui
40
41 install:
42         $(SYSTEM_MAKE_DIRS) $(SYSTEM_GUI_ROOT)
43         cp ./index.php $(SYSTEM_GUI_ROOT)/index.php
44         cp ./lostpassword.php $(SYSTEM_GUI_ROOT)/lostpassword.php
45         cp ./imagecode.php $(SYSTEM_GUI_ROOT)/imagecode.php
46         cp ./robots.txt $(SYSTEM_GUI_ROOT)/robots.txt
47         cp -R ./admin $(SYSTEM_GUI_ROOT)
48         cp -R ./reseller $(SYSTEM_GUI_ROOT)
49         cp -R ./client $(SYSTEM_GUI_ROOT)
50         cp -R ./include $(SYSTEM_GUI_ROOT)
51         cp -R ./domain_default_page $(SYSTEM_GUI_ROOT)
52         cp -R ./errordocs $(SYSTEM_GUI_ROOT)
53         cp -R ./themes $(SYSTEM_GUI_ROOT)
54         cp -R ./tools $(SYSTEM_GUI_ROOT)
55         cp -R ./orderpanel $(SYSTEM_GUI_ROOT)
56         cp -R ./phptmp $(SYSTEM_GUI_ROOT)
57 uninstall:
58         rm -rf $(SYSTEM_GUI_ROOT)
59
60 .PHONY: install uninstall
Note: See TracBrowser for help on using the browser.