link libcgi only against rrd_cgi since it is only needed there -- Peter Breitenlohner
[rrdtool.git] / src / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 #AUTOMAKE_OPTIONS   = foreign
4 #
5 #ACLOCAL_M4        = $(top_srcdir)/config/aclocal.m4
6 #AUTOHEADER = @AUTOHEADER@ --localdir=$(top_srcdir)/config
7 DEFS += -DMAKE_TIMESTAMP=\""$(shell date)"\"
8 fontsdir =  $(datadir)/rrdtool/fonts
9 fonts_DATA = DejaVuSansMono-Roman.ttf
10
11 #INCLUDES = $(CGI_INCLUDES) $(FREETYPE_INCLUDES) $(ART_INCLUDES) \
12 #           $(PNG_INCLUDES) $(ZLIB_INCLUDES)
13 RRD_DEFAULT_FONT=@RRD_DEFAULT_FONT@
14 AM_CPPFLAGS = -DRRD_DEFAULT_FONT=\"$(RRD_DEFAULT_FONT)\" -DNUMVERS=@NUMVERS@
15
16 RRD_C_FILES =           \
17         getopt.c        \
18         getopt1.c       \
19         parsetime.c     \
20         hash_32.c       \
21         rrd_hw.c        \
22         pngsize.c       \
23         rrd_create.c    \
24         rrd_diff.c      \
25         rrd_dump.c      \
26         rrd_info.c      \
27         rrd_error.c     \
28         rrd_fetch.c     \
29         rrd_format.c    \
30         rrd_graph.c     \
31         rrd_graph_helper.c      \
32         rrd_last.c      \
33         rrd_first.c     \
34         rrd_open.c      \
35         rrd_resize.c    \
36         rrd_restore.c   \
37         rrd_rpncalc.c \
38         rrd_tune.c      \
39         rrd_update.c    \
40         rrd_version.c   \
41         rrd_xport.c     \
42         rrd_nan_inf.c   \
43         art_rgba_svp.c \
44         art_rgba_svp.h \
45         unused.h \
46         rrd_gfx.c rrd_gfx.h \
47         rrd_afm.c rrd_afm_data.c \
48         getopt.h parsetime.h \
49         rrd_format.h rrd_tool.h rrd_xport.h rrd.h rrd_hw.h rrd_rpncalc.h \
50         rrd_tool.c \
51         rrd_nan_inf.h fnv.h rrd_graph.h rrd_afm.h rrd_afm_data.h \
52         rrd_is_thread_safe.h
53
54 lib_LTLIBRARIES           = librrd.la 
55 if BUILD_MULTITHREAD
56 lib_LTLIBRARIES           += librrd_th.la
57 endif
58
59 #noinst_LTLIBRARIES        = librrd_private.la
60
61 librrd_la_SOURCES         = $(RRD_C_FILES) rrd_not_thread_safe.c
62 #librrd_private_la_SOURCES = $(RRD_C_FILES) rrd_not_thread_safe.c
63
64 # librrd_la_LIBADD          = $(RRD_LIBS)
65
66 # This flag accepts an argument of the form current[:revision[:age]]. So,
67 # passing -version-info 3:12:1 sets current to 3, revision to 12, and age to 1.
68 #
69 # If either revision or age are omitted, they default to 0. Also note that
70 # age must be less than or equal to the current interface number.
71 #
72 # Here are a set of rules to help you update your library version information:
73 #
74 #   1. Start with version information of 0:0:0 for each libtool library.
75 #
76 #   2. Update the version information only immediately before a public
77 #   release of your software. More frequent updates are unnecessary, and
78 #   only guarantee that the current interface number gets larger faster.
79 #
80 #   3. If the library source code has changed at all since the last update,
81 #   then increment revision (c:r:a becomes c:r+1:a).
82 #
83 #   4. If any interfaces have been added, removed, or changed since the last
84 #   update, increment current, and set revision to 0.
85 #
86 #   5. If any interfaces have been added since the last public release, then
87 #   increment age.
88 #
89 #   6. If any interfaces have been removed since the last public release,
90 #   then set age to 0.
91 #
92 # Never try to set the interface numbers so that they correspond to the
93 # release number of your package. This is an abuse that only fosters
94 # misunderstanding of the purpose of library versions. Instead, use the
95 # -release flag (see Release numbers), but be warned that every release of
96 # your package will not be binary compatible with any other release.
97 #
98 # see http://www.gnu.org/software/libtool/manual.html#SEC32 for explanation
99 librrd_la_LDFLAGS         = -version-info 2:5:0
100
101 librrd_th_la_SOURCES         = $(RRD_C_FILES) rrd_thread_safe.c
102 librrd_th_la_CFLAGS          = $(MULTITHREAD_CFLAGS)
103 librrd_th_la_LDFLAGS         = $(MULTITHREAD_LDFLAGS) -version-info 2:1:0
104
105
106 include_HEADERS = rrd.h
107
108 #librrd_private_la_LIBADD  = $(RRD_LIBS)
109 #librrd_private_la_LDFLAGS = -static
110
111 bin_PROGRAMS    = rrdtool rrdupdate
112 if BUILD_RRDCGI
113 bin_PROGRAMS += rrdcgi
114 endif
115
116 rrdcgi_SOURCES  = rrd_cgi.c
117 rrdcgi_LDADD    = librrd.la
118 rrdcgi_CPPFLAGS = $(AM_CPPFLAGS) @CGI_CPPFLAGS@
119 rrdcgi_LDFLAGS = @CGI_LDFLAGS@ @CGI_LIBS@
120
121 rrdupdate_SOURCES = 
122 rrdupdate_LDADD = rrdupdate.o librrd.la
123
124 # rrdupdate.c: rrd_update.c
125 #       -ln -s ${srcdir}/rrdupdate.c rrd_update.c
126
127 rrdupdate.o: rrd_update.c
128         $(COMPILE) -DSTANDALONE -c -o $@ $^
129
130 rrdtool_SOURCES = 
131 rrdtool_DEPENDENCIES = rrd_tool.o
132 rrdtool_LDADD   = librrd.la
133
134 # strftime is here because we do not usually need it. unices have propper
135 # iso date support
136 EXTRA_DIST= rrdtool.dsp rrdtool.dsw strftime.c strftime.h $(fonts_DATA)