]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/c-apps/Makefile.am
4305852c98e39a7979442244cdb95757e2885d6d
[OpenSRF.git] / src / c-apps / Makefile.am
1 # Copyright (C) 2007-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 AM_CFLAGS = $(DEF_CFLAGS) -DORSF_LOG_PARAMS 
16 AM_LDFLAGS = $(DEF_LDFLAGS) -L@top_builddir@/src/libopensrf
17
18 DISTCLEANFILES = Makefile.in Makefile
19
20 noinst_PROGRAMS = timejson
21 lib_LTLIBRARIES = osrf_dbmath.la osrf_math.la osrf_version.la
22
23 timejson_SOURCES = timejson.c
24 timejson_LDADD = @top_builddir@/src/libopensrf/libopensrf.la
25
26 osrf_dbmath_la_SOURCES = osrf_dbmath.c 
27 osrf_dbmath_la_LDFLAGS = $(AM_LDFLAGS) -module
28 osrf_dbmath_la_LIBADD = @top_builddir@/src/libopensrf/libopensrf.la
29
30 osrf_math_la_SOURCES = osrf_math.c
31 osrf_math_la_LDFLAGS = $(AM_LDFLAGS) -module
32 osrf_math_la_LIBADD =  @top_builddir@/src/libopensrf/libopensrf.la
33
34 osrf_version_la_SOURCES = osrf_version.c 
35 osrf_version_la_LDFLAGS = $(AM_LDFLAGS) -module
36 osrf_version_la_LIBADD = @top_builddir@/src/libopensrf/libopensrf.la