lib: added FifoArgs API, for use in passing command line args without command line
[barry/progweb.git] / src / Makefile.am
blob7f53968a6e19962002b2fa433970941228fca7ee
2 # The following version numbers are:  current:revision:age
4 # See also: http://sources.redhat.com/autobook/autobook/autobook_91.html
6 # Current - number of the current interface of the library
7 # Revision - implementation number of most recent interface
8 # Age - number of previous additional interfaces supported by this library
10 # Libtool uses the following calculation for Linux:
12 #    major = current - age
13 #    suffix = major.age.revision
15 # Therefore a libtool version of 1.4.0 will translate to a filename of:
16 #    libbarry.so.1.0.4
18 # Other operating systems just use current.revision, most of the time,
19 # and age is only used to subtract from current.
21 # Therefore, if you are careful never to increment the major version
22 # unless there is an incompatible break, you can get away with a
23 # two digit version number, and leave age as 0, always.
25 # Only ever increment the first 2 numbers in this version:
26 # The first number represents libmajor, the second libminor.
27 # So version 0.17.1 will look like 17:1:0
28 LIB_BARRY_VERSION = @BARRY_MAJOR@:@BARRY_MINOR@:0
30 # Disable the default -I. -I$(srcdir) -I$(topdir), etc, but $(top_builddir) is
31 # needed for config.h
32 DEFAULT_INCLUDES = -I$(top_builddir)
33 #INCLUDES = $(USB_LIBRARY_CFLAGS) $(OPENSSL_CFLAGS)
34 INCLUDES = $(USB_LIBRARY_CFLAGS)
35 #AM_CXXFLAGS = -ansi -Wall -fno-strict-aliasing -g -D__DEBUG_MODE__
36 AM_CFLAGS = -Wall -fno-strict-aliasing -g -D__BARRY_LIBRARY_BUILD__
37 AM_CXXFLAGS = -Wall -fno-strict-aliasing -g -D__BARRY_LIBRARY_BUILD__
38 AM_LDFLAGS =
39 if WITH_GCCVISIBILITY
40 AM_CFLAGS += -D__BARRY_HAVE_GCCVISIBILITY__ -fvisibility=hidden
41 #AM_CXXFLAGS += -D__BARRY_HAVE_GCCVISIBILITY__ -fvisibility=hidden -fvisibility-inlines-hidden
42 AM_CXXFLAGS += -D__BARRY_HAVE_GCCVISIBILITY__ -fvisibility=hidden
43 #AM_LDFLAGS += -fvisibility=hidden -fvisibility-inlines-hidden
44 AM_LDFLAGS += -fvisibility=hidden
45 endif
46 include_barrydir = ${includedir}/barry@BARRY_MAJOR@/barry
49 ## Boost library usage - required for serialization support, but optional
51 #BOOSTFLAG = -D__BARRY_BOOST_MODE__ -I../../../../boost/rootdir/include/boost-1_33_1
52 #LDBOOST = ../../../../boost/rootdir/lib/libboost_serialization-gcc-mt-1_33_1.a
53 ##BOOSTFLAG =
54 ##LDBOOST =
56 # Heavy duty C++ warnings
57 #WARNFLAGS = -ansi -pedantic -Wall -W -Wold-style-cast -Wfloat-equal -Wwrite-strings -Wno-long-long
58 #WARNFLAGS = -ansi -pedantic -Wall -W -Weffc++ -Woverloaded-virtual -Wold-style-cast -Wfloat-equal -Wwrite-strings -Wno-long-long -Werror
60 #LDFLAGS = ../../external/rootdir/libusb/lib/libusb.a $(LDBOOST) $(LDDEBUG)
62 # To use gettext
63 datadir = @datadir@
64 localedir = $(datadir)/locale
65 DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
68 # libbarry - main USB protocol interface library
69 # libbarryalx - ALX library
70 # libbarrydp - '.debug' parser library
71 # libbarryjdwp - java debug server library
72 # libbarrysync - utility functions and classes for syncing and vformats
73 # libbarrybackup - utility classes for reading/writing Barry backup files
75 lib_LTLIBRARIES = libbarry.la libbarrydp.la libbarryjdwp.la
76 if WITH_SYNC
77 lib_LTLIBRARIES += libbarrysync.la
78 endif
79 if WITH_BACKUP
80 lib_LTLIBRARIES += libbarrybackup.la
81 endif
82 if WITH_ALX
83 lib_LTLIBRARIES += libbarryalx.la
84 endif
86 include_barry_HEADERS = barry.h barrysync.h barrybackup.h barryalx.h \
87         dll.h \
88         builder.h \
89         common.h \
90         configfile.h \
91         controller.h \
92         xmlparser.h \
93         a_common.h \
94         a_codsection.h \
95         a_library.h \
96         a_application.h \
97         a_osloader.h \
98         a_alxparser.h \
99         m_mode_base.h \
100         m_desktop.h \
101         m_raw_channel.h \
102         m_desktoptmpl.h \
103         m_ipmodem.h \
104         m_serial.h \
105         m_javaloader.h \
106         m_jvmdebug.h \
107         data.h \
108         error.h \
109         ldif.h \
110         ldifio.h \
111         log.h \
112         parser.h \
113         pin.h \
114         probe.h \
115         protocol.h \
116         record.h \
117         recordtmpl.h \
118         modem.h \
119         r_recur_base.h \
120         r_calendar.h \
121         r_calllog.h \
122         r_bookmark.h \
123         r_contact.h \
124         r_cstore.h \
125         r_folder.h \
126         r_hhagent.h \
127         r_memo.h \
128         r_message_base.h \
129         r_message.h \
130         r_pin_message.h \
131         r_saved_message.h \
132         r_servicebook.h \
133         r_sms.h \
134         r_task.h \
135         r_timezone.h \
136         dataqueue.h \
137         router.h \
138         socket.h \
139         time.h \
140         threadwrap.h \
141         vsmartptr.h \
142         version.h \
143         pppfilter.h \
144         sha1.h \
145         iconv.h \
146         cod.h \
147         bmp.h \
148         s11n-boost.h \
149         dp_codinfo.h \
150         j_manager.h \
151         j_server.h \
152         vformat.h \
153         vbase.h \
154         vcard.h \
155         vevent.h \
156         vjournal.h \
157         vtodo.h \
158         mimeio.h \
159         scoped_lock.h \
160         semaphore.h \
161         backup.h \
162         restore.h \
163         pipe.h \
164         connector.h \
165         trim.h \
166         fifoargs.h \
167         tzwrapper.h
169 noinst_HEADERS = cbarry.h \
170         base64.h \
171         record-internal.h \
172         r_recur_base-int.h \
173         bmp-internal.h \
174         cod-internal.h \
175         controllerpriv.h \
176         packet.h \
177         protostructs.h \
178         debug.h \
179         endian.h \
180         strnlen.h \
181         getpwuid.h \
182         platform.h \
183         dp_parser.h \
184         j_message.h \
185         j_jdwp.h \
186         tarfile.h \
187         usbwrap_libusb.h \
188         usbwrap_libusb_1_0.h \
189         ios_state.h \
190         clog.h
192 # Include the windows-only and android-only code files here too
193 EXTRA_DIST = convo.awk \
194         legal.txt \
195         iconvwin.cc \
196         getpwuidandroid.cc
198 libbarry_la_SOURCES = dll.h \
199         builder.h builder.cc \
200         parser.h parser.cc \
201         time.h time.cc \
202         fifoargs.h fifoargs.cc \
203         base64.h base64.cc \
204         bmp.h bmp-internal.h bmp.cc \
205         cod.h cod-internal.h cod.cc \
206         data.h data.cc \
207         pin.h pin.cc \
208         probe.h probe.cc \
209         common.h common.cc \
210         configfile.h configfile.cc \
211         error.h error.cc \
212         ldif.h ldif.cc \
213         ldifio.h ldifio.cc \
214         log.h log.cc \
215         socket.cc \
216         router.cc \
217         dataqueue.cc \
218         threadwrap.cc \
219         protocol.h protostructs.h protocol.cc \
220         record.h recordtmpl.h record-internal.h record.cc \
221         r_recur_base.h r_recur_base-int.h r_recur_base.cc \
222         r_calendar.h r_calendar.cc \
223         r_calllog.h r_calllog.cc \
224         r_bookmark.h r_bookmark.cc \
225         r_command.cc \
226         r_contact.h r_contact.cc \
227         r_cstore.h r_cstore.cc \
228         r_hhagent.h r_hhagent.cc \
229         r_dbdb.cc \
230         r_folder.h r_folder.cc \
231         r_memo.h r_memo.cc \
232         r_message_base.h r_message_base.cc \
233         r_recordstate.cc \
234         r_servicebook.h r_servicebook.cc \
235         r_sms.h r_sms.cc \
236         r_task.h r_task.cc \
237         r_timezone.h r_timezone.cc \
238         packet.h packet.cc \
239         controller.h controller.cc \
240         pipe.h pipe.cc \
241         m_mode_base.h m_mode_base.cc \
242         m_desktop.h m_desktop.cc \
243         m_raw_channel.h m_raw_channel.cc \
244         m_ipmodem.h m_ipmodem.cc \
245         m_serial.h m_serial.cc \
246         m_javaloader.h m_javaloader.cc \
247         m_jvmdebug.h m_jvmdebug.cc \
248         connector.h connector.cc \
249         version.h version.cc \
250         pppfilter.h pppfilter.cc \
251         sha1.h sha1.cc \
252         iconv.h iconv.cc
254 # Now sort out USB files
255 if USE_BARRY_SOCKETS
256 include_barry_HEADERS += usbwrap.h
258 libbarry_la_SOURCES += usbwrap.cc
260 if USE_LIBUSB_0_1
261 libbarry_la_SOURCES += usbwrap_libusb.cc
262 endif
264 if USE_LIBUSB_1_0
265 libbarry_la_SOURCES += usbwrap_libusb_1_0.cc
266 endif
268 endif # USE_BARRY_SOCKETS
270 #libbarry_la_LIBADD = $(LTLIBOBJS) $(USB_LIBRARY_LIBS) $(OPENSSL_LIBS)
271 libbarry_la_LIBADD = $(LTLIBOBJS) $(USB_LIBRARY_LIBS) $(ZLIB_LIBS) @LTLIBICONV@ \
272          $(NETWORK_LIBRARY_LIBS)
273 libbarry_la_LDFLAGS = -version-info ${LIB_BARRY_VERSION}
275 libbarrydp_la_SOURCES = \
276         dp_parser.h dp_parser.cc \
277         dp_codinfo.h dp_codinfo.cc
278 libbarrydp_la_LIBADD = libbarry.la
279 libbarrydp_la_LDFLAGS = -version-info ${LIB_BARRY_VERSION}
281 libbarryjdwp_la_SOURCES = \
282         j_record.cc \
283         j_jdwp.h j_jdwp.cc \
284         j_message.h j_message.cc \
285         j_server.h j_server.cc \
286         j_manager.h j_manager.cc
287 libbarryjdwp_la_LIBADD = libbarry.la libbarrydp.la $(USB_LIBRARY_LIBS) $(NETWORK_LIBRARY_LIBS)
288 libbarryjdwp_la_LDFLAGS = -version-info ${LIB_BARRY_VERSION}
290 if WITH_SYNC
291 libbarrysync_la_SOURCES = \
292         vformat.h vformat.c \
293         vbase.h vbase.cc \
294         vcard.h vcard.cc \
295         vevent.h vevent.cc \
296         vjournal.h vjournal.cc \
297         vtodo.h vtodo.cc \
298         mimeio.h mimeio.cc \
299         tzwrapper.h tzwrapper.cc
300 # if we set CFLAGS and CXXFLAGS ourselves, we need to include
301 # AM_*FLAGS as well... this only seems to matter for compile flags,
302 # not link flags
303 libbarrysync_la_CFLAGS = $(AM_CFLAGS) $(GLIB2_CFLAGS)
304 libbarrysync_la_CXXFLAGS = $(AM_CXXFLAGS) $(GLIB2_CFLAGS)
305 libbarrysync_la_LIBADD = libbarry.la $(GLIB2_LIBS)
306 libbarrysync_la_LDFLAGS = -version-info ${LIB_BARRY_VERSION}
307 endif
309 if WITH_BACKUP
310 libbarrybackup_la_SOURCES = \
311         tarfile.cc tarfile-ops-nt.cc \
312         backup.h backup.cc \
313         restore.h restore.cc
314 libbarrybackup_la_CFLAGS = $(AM_CFLAGS) $(LIBTAR_CFLAGS) $(LIBZ_CFLAGS)
315 libbarrybackup_la_CXXFLAGS = $(AM_CXXFLAGS) $(LIBTAR_CFLAGS) $(LIBZ_CFLAGS)
316 libbarrybackup_la_LIBADD = libbarry.la $(LIBTAR_LIBS) $(LIBZ_LIBS)
317 libbarrybackup_la_LDFLAGS = -version-info ${LIB_BARRY_VERSION}
318 endif
320 if WITH_ALX
321 libbarryalx_la_SOURCES = \
322         xmlparser.h xmlparser.cc \
323         a_common.h \
324         a_codsection.h a_codsection.cc \
325         a_library.h a_library.cc \
326         a_application.h a_application.cc \
327         a_osloader.h a_osloader.cc \
328         a_alxparser.h a_alxparser.cc
329 libbarryalx_la_CXXFLAGS = $(AM_CXXFLAGS) $(LIBXMLXX_CFLAGS)
330 libbarryalx_la_LIBADD = libbarry.la $(LIBXMLXX_LIBS)
331 libbarryalx_la_LDFLAGS = -version-info ${LIB_BARRY_VERSION}
332 endif
334 ##if DO_TEST
335 ##      bin_PROGRAMS += test-base64 test-data test-time
337 ##      test_base64_SOURCES = base64.h base64.cc
338 ##      test_data_SOURCES = data.h data.cc
339 ##      test_time_SOURCES = time.h time.cc
340 ##endif