]> git.evergreen-ils.org Git - OpenSRF.git/blob - Makefile.am
Docs: Add Xenial references in the websocket setup instructions
[OpenSRF.git] / 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
15 if !DEBUG
16 MAYBE_DEBUG = -DNDEBUG
17 endif
18
19 export PREFIX                   = @prefix@
20 export TMP                      = @TMP@
21 export LIBXML2_HEADERS          = @LIBXML2_HEADERS@
22 export APR_HEADERS              = @APR_HEADERS@
23 export ETCDIR                   = @sysconfdir@
24 export APXS2                    = @APXS2@
25 export APACHE2_HEADERS          = @APACHE2_HEADERS@
26 export DEF_CFLAGS               = -D_LARGEFILE64_SOURCE $(MAYBE_DEBUG) -pipe -g -Wall -O2 -fPIC -I@abs_top_srcdir@/include/ -I$(LIBXML2_HEADERS) -I$(APACHE2_HEADERS) -I$(APR_HEADERS) @INCLUDES@
27 export DEF_LDLIBS               = -lopensrf
28 export VAR                      = @localstatedir@
29 export PID                      = @localstatedir@/run/opensrf
30 export SOCK                     = @localstatedir@/lock/opensrf
31 export LOG                      = @localstatedir@/log/opensrf
32 export srcdir                   = @srcdir@
33 export PERL_BASE                = @PERL_BASE@
34 opensrfincludedir               = @includedir@/opensrf
35
36 AM_CFLAGS = $(DEF_CFLAGS)
37
38 DISTCLEANFILES = Makefile.in Makefile aclocal.m4 config.guess config.log config.sub config.status configure depcomp install-sh ltmain.sh missing
39
40 DOC_FILES = @srcdir@/doc/Application-HOWTO.txt \
41                         @srcdir@/doc/dokuwiki-doc-stubber.pl \
42                         @srcdir@/doc/OpenSRF-Messaging-Protocol.html \
43                         @srcdir@/doc/Persist-API.html \
44                         @srcdir@/doc/Roadmap.txt \
45                         @srcdir@/AUTHORS \
46                         @srcdir@/ChangeLog \
47                         @srcdir@/INSTALL \
48                         @srcdir@/README
49
50 EXAMPLES_FILES = @srcdir@/examples/fieldmapper2cdbi.xsl \
51                                  @srcdir@/examples/fieldmapper2javascript.xsl \
52                                  @srcdir@/examples/fieldmapper2perl.xsl \
53                                  @srcdir@/examples/gen-fieldmapper.xml \
54                                  @srcdir@/examples/math_bench.pl \
55                                  @srcdir@/examples/math_client.py \
56                                  @srcdir@/examples/multisession-test.pl \
57                                  @srcdir@/examples/srfsh_config.xsd \
58                                  @srcdir@/examples/math_xul_client/math \
59                                  @srcdir@/examples/math_xul_client/install.js
60
61 strn_compat_FILES = @srcdir@/src/ports/strn_compat/strndup.c \
62                                         @srcdir@/src/ports/strn_compat/strndup.h \
63                                         @srcdir@/src/ports/strn_compat/strnlen.c \
64                                         @srcdir@/src/ports/strn_compat/strnlen.h
65
66 python_FILES = @srcdir@/src/python/opensrf.py \
67                            @srcdir@/src/python/setup.py \
68                            @srcdir@/src/python/srfsh.py \
69                            @srcdir@/src/python/osrf
70
71 java_FILES = @srcdir@/src/java/deps.inc \
72                          @srcdir@/src/java/deps.sh \
73                          @srcdir@/src/java/org
74
75 libosrf_FILES = @srcdir@/src/libopensrf/basic_client.c \
76                 @srcdir@/src/libopensrf/osrf_big_hash.c \
77                 @srcdir@/src/libopensrf/osrf_big_list.c \
78                 @srcdir@/src/libopensrf/osrfConfig.c
79
80
81 EXTRA_DIST = $(DOC_FILES) $(EXAMPLES_FILES) $(libosrf_FILES) $(strn_compat_FILES) $(python_FILES) $(java_FILES) @srcdir@/autogen.sh @srcdir@/src/extras @srcdir@/COPYING @srcdir@/DCO-1.1.txt @srcdir@/LICENSE.txt @srcdir@/src/perl @srcdir@/src/javascript
82
83 OSRFINC=@srcdir@/include/opensrf
84
85 if BUILDCORE
86 opensrfinclude_HEADERS = $(OSRFINC)/log.h \
87         $(OSRFINC)/md5.h \
88         $(OSRFINC)/osrf_application.h \
89         $(OSRFINC)/osrf_app_session.h \
90         $(OSRFINC)/osrf_big_hash.h \
91         $(OSRFINC)/osrf_big_list.h \
92         $(OSRFINC)/osrf_cache.h \
93         $(OSRFINC)/osrfConfig.h \
94         $(OSRFINC)/osrf_hash.h \
95         $(OSRFINC)/osrf_json.h \
96         $(OSRFINC)/osrf_json_xml.h \
97         $(OSRFINC)/osrf_legacy_json.h \
98         $(OSRFINC)/osrf_list.h \
99         $(OSRFINC)/osrf_message.h \
100         $(OSRFINC)/osrf_prefork.h \
101         $(OSRFINC)/osrf_settings.h \
102         $(OSRFINC)/osrf_stack.h \
103         $(OSRFINC)/osrf_system.h \
104         $(OSRFINC)/osrf_transgroup.h \
105         $(OSRFINC)/sha.h \
106         $(OSRFINC)/socket_bundle.h \
107         $(OSRFINC)/string_array.h \
108         $(OSRFINC)/transport_client.h \
109         $(OSRFINC)/transport_message.h \
110         $(OSRFINC)/transport_session.h \
111         $(OSRFINC)/utils.h \
112         $(OSRFINC)/xml_utils.h \
113         src/gateway/apachetools.h
114 endif
115
116 SUBDIRS = src tests
117
118 distclean-local:
119         rm -rf ./autom4te.cache
120         rm -rf ./m4
121
122 # vim:noet:ts=4:sw=4: