documentation was symlinked wrong
[iserv-mod-room-reservation.git] / Makefile
1 # @file Makefile
2 # Makefile for installing, creating documentation etc.
3 # @author: Roland Hieber (roland.hieber@wilhelm-gym.net)
4 # @date: 12.11.2007
5 #
6 # Copyright © 2007 Roland Hieber
7 #
8 # Permission is hereby granted, free of charge, to any person obtaining
9 # copy of this software and associated documentation files (the "Software"),
10 # to deal in the Software without restriction, including without limitation
11 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 # and/or sell copies of the Software, and to permit persons to whom the
13 # Software is furnished to do so, subject to the following conditions:
14 #
15 # The above copyright notice and this permission notice shall be included in
16 # all copies or substantial portions of the Software.
17 #
18 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 # THE SOFTWARE.
25 #
26
27 DESTDIR?=
28 SOURCEFILES=src/*.php includes/*.inc
29 MODULE_DOC_FILES=doc/source/html/* doc/source/latex/*
30 LN=ln -f
31 RM=rm -rf
32 MKDIR=mkdir -p
33
34 # hardlink the files to their destinations
35 # TODO move documentation where Jörg wants it ;)
36 links:
37 # documentation
38 $(MKDIR) $(DESTDIR)/usr/share/doc/iserv/mod/room-reservation/source/
39 $(LN) doc/{TODO,changelog.old.html} $(DESTDIR)/usr/share/doc/iserv/mod/room-reservation/
40 $(LN) doc/source/* $(DESTDIR)/usr/share/doc/iserv/mod/room-reservation/source/
41 $(RM) $(DESTDIR)/usr/share/doc/iserv/mod/room-reservation
42 $(LN) -s $(DESTDIR)/usr/share/doc/iserv-mod-room-reservation $(DESTDIR)/usr/share/doc/iserv/mod/room-reservation
43
44 # images
45 if [ ! -d $(DESTDIR)/usr/share/iserv/www/img/default/16/ ]; then $(MKDIR) $(DESTDIR)/usr/share/iserv/www/img/default/16/; fi
46 $(LN) img/16/*.png $(DESTDIR)/usr/share/iserv/www/img/default/16/
47 if [ ! -d $(DESTDIR)/usr/share/iserv/www/img/default/24/ ]; then $(MKDIR) $(DESTDIR)/usr/share/iserv/www/img/default/24/; fi
48 $(LN) img/24/*.png $(DESTDIR)/usr/share/iserv/www/img/default/24/
49 if [ ! -d $(DESTDIR)/usr/share/iserv/www/img/default/32/ ]; then $(MKDIR) $(DESTDIR)/usr/share/iserv/www/img/default/32/; fi
50 $(LN) img/32/*.png $(DESTDIR)/usr/share/iserv/www/img/default/32/
51
52 # includes
53 $(MKDIR) $(DESTDIR)/usr/share/iserv/www/inc/mod_room-reservation
54 $(LN) includes/*.inc $(DESTDIR)/usr/share/iserv/www/inc/mod_room-reservation/
55 if [ ! -e $(DESTDIR)/usr/share/iserv/www/inc/mod_room-reservation/config.inc ] ; then touch $(DESTDIR)/usr/share/iserv/www/inc/mod_room-reservation/config.inc; fi
56 ifeq ($(shell id -u),0)
57 chmod g+w $(DESTDIR)/usr/share/iserv/www/inc/mod_room-reservation/config.inc
58 chown www-data $(DESTDIR)/usr/share/iserv/www/inc/mod_room-reservation/config.inc
59 endif
60
61 # i18n
62 if [ ! -d $(DESTDIR)/usr/share/iserv/locale/de/ ]; then $(MKDIR) $(DESTDIR)/usr/share/iserv/locale/de/; fi
63 $(LN) lang/*.po $(DESTDIR)/usr/share/iserv/locale/de/
64
65 # navigation
66 if [ ! -d $(DESTDIR)/usr/share/iserv/www/nav/admin ]; then $(MKDIR) $(DESTDIR)/usr/share/iserv/www/nav/admin; fi
67 $(LN) nav/*.mod $(DESTDIR)/usr/share/iserv/www/nav/
68 $(LN) nav/admin/*.mod $(DESTDIR)/usr/share/iserv/www/nav/admin/
69
70 # privileges
71 if [ ! -d $(DESTDIR)/usr/share/iserv/priv/ ]; then $(MKDIR) $(DESTDIR)/usr/share/iserv/priv/; fi
72 $(LN) priv/* $(DESTDIR)/usr/share/iserv/priv/
73
74 # SQL tables
75 if [ ! -d $(DESTDIR)/usr/share/iserv/db/log_module ]; then $(MKDIR) $(DESTDIR)/usr/share/iserv/db/log_module; fi
76 $(LN) sql/*.sql $(DESTDIR)/usr/share/iserv/db/
77 $(LN) sql/log_module/* $(DESTDIR)/usr/share/iserv/db/log_module
78
79 # web pages
80 $(MKDIR) $(DESTDIR)/usr/share/iserv/www/mod_room-reservation/admin
81 $(LN) src/index.php $(DESTDIR)/usr/share/iserv/www/mod_room-reservation/
82 $(LN) src/admin/*.php $(DESTDIR)/usr/share/iserv/www/mod_room-reservation/admin/
83
84 # additional files
85 $(MKDIR) $(DESTDIR)/usr/share/iserv/modules/room-reservation
86 $(LN) maint/update-iserv1-iserv2.pl $(DESTDIR)/usr/share/iserv/modules/room-reservation
87 chmod +x $(DESTDIR)/usr/share/iserv/modules/room-reservation/update-iserv1-iserv2.pl
88
89 # build doxygen documentation from source
90 sourcedoc:
91 doxygen
92 mv doc/source/html/* doc/source/ && rm -rf doc/source/html
93
94 # install everything
95 install: sourcedoc links
96 ifeq ($(shell echo $USER),root)
97 chkdb -r
98 chkpriv
99 chklocale
100 endif
101
102 # uninstalling
103 uninstall:
104 $(RM) $(DESTDIR)/usr/share/doc/iserv/mod/mod_room-reservation
105 $(RM) $(DESTDIR)/usr/share/iserv/locale/de/mod_room-reservation.po
106 $(RM) $(DESTDIR)/usr/share/iserv/db/mod_room-reservation.sql
107 $(RM) $(DESTDIR)/usr/share/iserv/db/log_module/mod_room-reservation
108 $(RM) $(DESTDIR)/usr/share/iserv/www/nav/79mod_room-reservation.mod
109 $(RM) $(DESTDIR)/usr/share/iserv/priv/mod_room-reservation
110 $(RM) $(DESTDIR)/usr/share/iserv/www/nav/admin/99mod_room-reservation.mod
111 $(RM) $(DESTDIR)/usr/share/iserv/www/img/default/{16,24,32}/mod_room-reservation_{timeslice,index,config}.png
112 $(RM) $(DESTDIR)/usr/share/iserv/www/inc/mod_room-reservation
113 $(RM) $(DESTDIR)/usr/share/iserv/www/mod_room-reservation
114 $(RM) $(DESTDIR)/usr/share/iserv/modules/room-reservation
115
116 psql -c "DELETE FROM log_module WHERE module='Room Reservation Schedule';"
117 chklocale
118
119 @echo
120 @echo If you do not need the SQL tables anymore, remove them by running
121 @echo ' psql -c "DROP TABLE mod_roomreservation_bookings;"'
122 @echo After that, all bookings are unrecoverably deleted!
123 @echo
124
125 # clean up
126 clean: distclean
127
128 distclean:
129 $(RM) doc/source
130
131 .PHONY: clean
This page took 0.047304 seconds and 5 git commands to generate.