]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/Makefile.am
LP#1775466 Angular(6) base application
[working/Evergreen.git] / Open-ILS / src / Makefile.am
1 # Copyright (C) 2008 Equinox Software, Inc.
2 # Kevin Beswick <kevinbeswick00@gmail.com>
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 ## Process this file with automake to generate Makefile.in
15
16
17 export STAFF_CLIENT_BUILD_ID = `/bin/cat @top_srcdir@/Open-ILS/xul/staff_client/build/BUILD_ID`
18 export DEF_LDFLAGS = -L. -L$(TMP) -L$(OPENSRF_LIBS)
19 export DEF_CFLAGS = -D_LARGEFILE64_SOURCE -pipe -g -Wall -O2 -fPIC -I@top_srcdir@/include -I$(LIBXML2_HEADERS) -I$(APACHE2_HEADERS) -I$(APR_HEADERS)  -I$(LIBXML2_HEADERS)/libxml  -I$(TMP) -I$(OPENSRF_HEADERS)
20 export DEF_LDLIBS = -lopensrf 
21
22
23 # Establish some installation directories and such
24 prefix=@prefix@
25 exec_prefix=@exec_prefix@
26 datadir=@localstatedir@/data
27 examples = @top_srcdir@/Open-ILS/examples
28 supportscr = @srcdir@/support-scripts
29
30 # Collect files to be used by multiple targets
31
32 autojsbinscripts = @srcdir@/extras/autogen.sh
33
34 # Decide which entities to build
35
36 sysconf_DATA = $(examples)/action_trigger_filters.json.example \
37                $(examples)/opensrf.xml.example \
38                $(examples)/opensrf_core.xml.example \
39                $(examples)/fm_IDL.xml \
40                $(examples)/oils_sip.xml.example \
41                $(examples)/lib_ips.txt.example \
42                $(examples)/oils_yaz.xml.example \
43                $(examples)/kpac.xml.example \
44                $(examples)/oils_z3950.xml.example 
45
46 #----------------------------
47 # Build ILS CORE
48 #----------------------------
49
50 if BUILDILSCORE
51
52 #Add directories to build
53 OILSCORE_DIRS = c-apps extras perlmods
54 #Add manual (non-automake) install targets for simplicity of installing.
55 OILSCORE_INST = ilscore-install
56
57 core_data = @srcdir@/extras/ils_events.xml \
58             $(examples)/hold_notification_template.example
59
60 core_scripts =   $(examples)/oils_ctl.sh \
61                  $(supportscr)/fine_generator.pl \
62                  $(supportscr)/hold_targeter.pl \
63                  $(supportscr)/hold_targeter_v2.pl \
64                  $(supportscr)/reshelving_complete.srfsh \
65                  $(supportscr)/clear_expired_circ_history.srfsh \
66                  $(supportscr)/update_hard_due_dates.srfsh \
67                  $(supportscr)/juv_to_adult.srfsh \
68                  $(supportscr)/thaw_expired_frozen_holds.srfsh \
69                  $(supportscr)/long-overdue-status-update.pl \
70                  $(supportscr)/purge_at_events.srfsh \
71                  $(supportscr)/purge_holds.srfsh \
72                  $(supportscr)/purge_circulations.srfsh \
73                  $(supportscr)/purge_pending_users.srfsh \
74                  $(supportscr)/clear_cc_number.srfsh \
75                  $(supportscr)/sitemap_generator \
76                  $(srcdir)/extras/eg_config \
77                  $(srcdir)/extras/openurl_map.pl \
78                  $(srcdir)/extras/import/marc_add_ids
79
80 installautojs = $(autojsbinscripts)
81
82 endif
83
84 #--------------------
85 # Build Apache modules
86 #--------------------
87
88 if BUILDAPACHEMODS
89 OILSWEB_DIR = apachemods
90 endif
91
92 #---------------------
93 # Build ILS Reporter
94 #---------------------
95
96 if BUILDILSREPORTER
97 OILSREP_INST = reporter-install
98 #reporter-install
99 reporter_scripts = @srcdir@/reporter/clark-kent.pl \
100                    @srcdir@/reporter/find_orphaned_reports.pl
101 reporter_data = @srcdir@/reporter/report-fail \
102                @srcdir@/reporter/report-success
103 endif
104
105 #------------------------------
106 # Build EVERGREEN PYTHON
107 #------------------------------
108
109 if BUILDEGPYTHON
110 OILSPYTHON_DIR = python
111 endif
112
113 #------------------------------
114 # Build EVERGREEN JAVA
115 #------------------------------
116
117 if BUILDEGJAVA
118 OILSJAVA_DIR = java
119 endif
120
121 gen_scripts = \
122         @srcdir@/extras/fast-extract \
123         @srcdir@/extras/import/marc2are.pl \
124         @srcdir@/extras/import/marc2bre.pl \
125         @srcdir@/extras/import/marc2sre.pl \
126         @srcdir@/extras/import/parallel_pg_loader.pl \
127         $(supportscr)/action_trigger_runner.pl \
128         $(supportscr)/authority_control_fields.pl \
129         $(supportscr)/authority_authority_linker.pl \
130         $(supportscr)/eg_db_config \
131         $(supportscr)/marc_export \
132         $(supportscr)/offline-blocked-list.pl \
133         $(supportscr)/pingest.pl
134
135 gen_docs = \
136         $(examples)/apache/eg.conf \
137         $(examples)/apache/eg_vhost.conf \
138         $(examples)/apache/eg_startup \
139         $(examples)/apache_24/eg_24.conf \
140         $(examples)/apache_24/eg_vhost_24.conf
141
142 bin_SCRIPTS = $(core_scripts) $(gen_scripts) $(reporter_scripts) $(installautojs)
143
144 CLEANFILES = $(gen_scripts)
145
146 data_DATA = $(core_data) $(reporter_data)
147
148 doc_DATA = $(gen_docs)
149
150 # Take care of which subdirectories to build, and which extra files to include in a distribution.
151
152 SUBDIRS = $(OILSCORE_DIRS) $(OILSWEB_DIR) $(OILSPYTHON_DIR) $(OILSJAVA_DIR)
153
154 EXTRA_DIST = @srcdir@/perlmods \
155         @srcdir@/data \
156         @srcdir@/templates \
157         @top_srcdir@/Open-ILS/xsl \
158         @srcdir@/cgi-bin \
159         $(gen_scripts) \
160         $(gen_docs) \
161         @srcdir@/extras/eg_config
162
163 do_subst = $(SED) \
164         -e 's,[@]bindir[@],$(bindir),g' \
165         -e 's,[@]datarootdir[@],$(datarootdir),g' \
166         -e 's,[@]docdir[@],$(docdir),g' \
167         -e 's,[@]exec_prefix[@],$(exec_prefix),g' \
168         -e 's,[@]includedir[@],$(includedir),g' \
169         -e 's,[@]libdir[@],$(libdir),g' \
170         -e 's,[@]localstatedir[@],$(localstatedir),g' \
171         -e 's,[@]prefix[@],$(prefix),g' \
172         -e 's,[@]sysconfdir[@],$(sysconfdir),g'
173
174 # Install header files
175
176 oilsincludedir = @includedir@/openils
177 headsdir = @top_srcdir@/Open-ILS/include/openils
178 oilsinclude_HEADERS = $(headsdir)/idl_fieldmapper.h $(headsdir)/oils_constants.h $(headsdir)/oils_event.h $(headsdir)/oils_idl.h $(headsdir)/oils_utils.h
179
180 # Install everything that did not get installed by autotools
181
182 install-data-hook: $(OILSCORE_INST) $(OILSWEB_INST) $(OILSUPDATES_INST) $(OILSREP_INST)
183
184 uninstall-hook:
185         rm -R $(TEMPLATEDIR)
186         rm -R $(XSLDIR)
187         rm -R $(CGIDIR)
188
189 @srcdir@/extras/fast-extract: Makefile @srcdir@/extras/fast-extract.in
190         $(do_subst) @srcdir@/extras/fast-extract.in > "$@"
191         chmod 755 "$@"
192
193 @srcdir@/extras/import/marc2are.pl: Makefile @srcdir@/extras/import/marc2are.pl.in
194         $(do_subst) @srcdir@/extras/import/marc2are.pl.in > "$@"
195         chmod 755 "$@"
196
197 @srcdir@/extras/import/marc2bre.pl: Makefile @srcdir@/extras/import/marc2bre.pl.in
198         $(do_subst) @srcdir@/extras/import/marc2bre.pl.in > "$@"
199         chmod 755 "$@"
200
201 @srcdir@/extras/import/marc2sre.pl: Makefile @srcdir@/extras/import/marc2sre.pl.in
202         $(do_subst) @srcdir@/extras/import/marc2sre.pl.in > "$@"
203         chmod 755 "$@"
204
205 @srcdir@/extras/import/parallel_pg_loader.pl: Makefile @srcdir@/extras/import/parallel_pg_loader.pl.in
206         $(do_subst) @srcdir@/extras/import/parallel_pg_loader.pl.in > "$@"
207         chmod 755 "$@"
208
209 $(supportscr)/action_trigger_runner.pl: Makefile $(supportscr)/action_trigger_runner.pl.in
210         $(do_subst) $(supportscr)/action_trigger_runner.pl.in > "$@"
211         chmod 755 "$@"
212
213 $(supportscr)/authority_authority_linker.pl: Makefile $(supportscr)/authority_authority_linker.pl.in
214         $(do_subst) $(supportscr)/authority_authority_linker.pl.in > "$@"
215         chmod 755 "$@"
216
217 $(supportscr)/authority_control_fields.pl: Makefile $(supportscr)/authority_control_fields.pl.in
218         $(do_subst) $(supportscr)/authority_control_fields.pl.in > "$@"
219         chmod 755 "$@"
220
221 $(supportscr)/eg_db_config: Makefile $(supportscr)/eg_db_config.in
222         $(do_subst) $(supportscr)/eg_db_config.in > "$@"
223         chmod 755 "$@"
224
225 $(supportscr)/marc_export: Makefile $(supportscr)/marc_export.in
226         $(do_subst) $(supportscr)/marc_export.in > "$@"
227         chmod 755 "$@"
228
229 $(supportscr)/offline-blocked-list.pl: Makefile $(supportscr)/offline-blocked-list.pl.in
230         $(do_subst) $(supportscr)/offline-blocked-list.pl.in > "$@"
231         chmod 755 "$@"
232
233 $(examples)/apache/eg.conf: Makefile $(examples)/apache/eg.conf.in
234         $(do_subst) $(examples)/apache/eg.conf.in > "$@"
235
236 $(examples)/apache/eg_vhost.conf: Makefile $(examples)/apache/eg_vhost.conf.in
237         $(do_subst) $(examples)/apache/eg_vhost.conf.in > "$@"
238
239 $(examples)/apache/eg_startup: Makefile $(examples)/apache/eg_startup.in
240         $(do_subst) $(examples)/apache/eg_startup.in > "$@"
241
242 $(examples)/apache_24/eg_24.conf: Makefile $(examples)/apache_24/eg.conf.in
243         $(do_subst) $(examples)/apache_24/eg.conf.in > "$@"
244
245 $(examples)/apache_24/eg_vhost_24.conf: Makefile $(examples)/apache_24/eg_vhost.conf.in
246         $(do_subst) $(examples)/apache_24/eg_vhost.conf.in > "$@"
247
248 #perl-install and string-templates-install      
249 ilscore-install:
250         @echo $@
251         $(MKDIR_P) $(DESTDIR)$(TEMPLATEDIR)
252         @echo "Installing templates to $(DESTDIR)$(TEMPLATEDIR)"
253         cp -r @srcdir@/templates/* $(DESTDIR)$(TEMPLATEDIR)
254         -@if test -d @srcdir@/data/locale; then \
255                 $(MKDIR_P) $(DESTDIR)$(datadir)/locale/ && \
256                 echo "Installing template data files to $(datadir)/locale/" && \
257                 cp -r @srcdir@/data/locale/* $(datadir)/locale/ ;\
258         fi;
259         $(MKDIR_P) $(DESTDIR)$(datadir)/overdue/
260         sed -i 's|LOCALSTATEDIR|@localstatedir@|g' '$(DESTDIR)@sysconfdir@/oils_sip.xml.example'
261         sed -i 's|SYSCONFDIR|@sysconfdir@|g' '$(DESTDIR)@sysconfdir@/oils_sip.xml.example'
262         sed -i 's|LIBDIR|@libdir@|g' '$(DESTDIR)@sysconfdir@/oils_sip.xml.example'
263         sed -i 's|LOCALSTATEDIR|@localstatedir@|g' '$(DESTDIR)@sysconfdir@/opensrf_core.xml.example'
264         sed -i 's|SYSCONFDIR|@sysconfdir@|g' '$(DESTDIR)@sysconfdir@/opensrf_core.xml.example'
265         sed -i 's|LOCALSTATEDIR|@localstatedir@|g' '$(DESTDIR)@sysconfdir@/opensrf.xml.example'
266         sed -i 's|SYSCONFDIR|@sysconfdir@|g' '$(DESTDIR)@sysconfdir@/opensrf.xml.example'
267         sed -i 's|LIBDIR|@libdir@|g' '$(DESTDIR)@sysconfdir@/opensrf.xml.example'
268         sed -i 's|BINDIR|@bindir@|g' '$(DESTDIR)@bindir@/autogen.sh'
269         sed -i 's|LOCALSTATEDIR|@localstatedir@|g' '$(DESTDIR)@bindir@/autogen.sh'
270         sed -i 's|SYSCONFDIR|@sysconfdir@|g' '$(DESTDIR)@bindir@/autogen.sh'
271         sed -i 's|BINDIR|@bindir@|g' '$(DESTDIR)@bindir@/reshelving_complete.srfsh'
272         sed -i 's|BINDIR|@bindir@|g' '$(DESTDIR)@bindir@/clear_expired_circ_history.srfsh'
273         sed -i 's|BINDIR|@bindir@|g' '$(DESTDIR)@bindir@/update_hard_due_dates.srfsh'
274         sed -i 's|BINDIR|@bindir@|g' '$(DESTDIR)@bindir@/juv_to_adult.srfsh'
275         sed -i 's|BINDIR|@bindir@|g' '$(DESTDIR)@bindir@/long-overdue-status-update.pl'
276         sed -i 's|SYSCONFDIR|@sysconfdir@|g' '$(DESTDIR)@bindir@/long-overdue-status-update.pl'
277         sed -i 's|BINDIR|@bindir@|g' '$(DESTDIR)@bindir@/thaw_expired_frozen_holds.srfsh'
278         sed -i 's|BINDIR|@bindir@|g' '$(DESTDIR)@bindir@/clear_cc_number.srfsh'
279         sed -i 's|BINDIR|@bindir@|g' '$(DESTDIR)@bindir@/purge_at_events.srfsh'
280         sed -i 's|BINDIR|@bindir@|g' '$(DESTDIR)@bindir@/purge_circulations.srfsh'
281         sed -i 's|BINDIR|@bindir@|g' '$(DESTDIR)@bindir@/purge_holds.srfsh'
282         sed -i 's|BINDIR|@bindir@|g' '$(DESTDIR)@bindir@/purge_pending_users.srfsh'
283         sed -i 's|LOCALSTATEDIR|@localstatedir@|g' '$(DESTDIR)@bindir@/oils_ctl.sh'
284         sed -i 's|SYSCONFDIR|@sysconfdir@|g' '$(DESTDIR)@bindir@/oils_ctl.sh'
285
286 reporter-install:
287         sed -i 's|SYSCONFDIR|@sysconfdir@|g' '$(DESTDIR)@bindir@/clark-kent.pl'
288         sed -i 's|SYSCONFDIR|@sysconfdir@|g' '$(DESTDIR)@bindir@/find_orphaned_reports.pl'
289
290 docs-install: gen_docs
291         $(MKDIR_P) $(DESTDIR)$(docdir)