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