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:
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 LIB_BARRY_VERSION = 0:8:0
28 # Disable the default -I. -I$(srcdir) -I$(topdir), etc, as our includes
29 # are proper anyway. :-)
31 #INCLUDES = @PACKAGE_CXXFLAGS@ -I@LIBUSB_INC_PATH@
32 INCLUDES = $(LIBUSB_CFLAGS) $(OPENSSL_CFLAGS)
33 #AM_CXXFLAGS = -ansi -Wall -fno-strict-aliasing -g -D__DEBUG_MODE__
34 AM_CXXFLAGS = -ansi -Wall -fno-strict-aliasing -g
35 include_barrydir = ${includedir}/barry
38 ## Boost library usage - required for serialization support, but optional
40 #BOOSTFLAG = -D__BARRY_BOOST_MODE__ -I../../../../boost/rootdir/include/boost-1_33_1
41 #LDBOOST = ../../../../boost/rootdir/lib/libboost_serialization-gcc-mt-1_33_1.a
45 # Heavy duty C++ warnings
46 #WARNFLAGS = -ansi -pedantic -Wall -W -Wold-style-cast -Wfloat-equal -Wwrite-strings -Wno-long-long
47 #WARNFLAGS = -ansi -pedantic -Wall -W -Weffc++ -Woverloaded-virtual -Wold-style-cast -Wfloat-equal -Wwrite-strings -Wno-long-long -Werror
49 #LDFLAGS = ../../external/rootdir/libusb/lib/libusb.a $(LDBOOST) -lpthread $(LDDEBUG)
51 lib_LTLIBRARIES = libbarry.la
53 include_barry_HEADERS = barry.h \
79 libbarry_la_SOURCES = time.cc \
104 libbarry_la_LIBADD = $(LIBUSB_LIBS) $(OPENSSL_LIBS)
105 libbarry_la_LDFLAGS = -version-info ${LIB_BARRY_VERSION}
108 ## bin_PROGRAMS += test-base64 test-data test-time
110 ## test_base64_SOURCES = base64.h base64.cc
111 ## test_data_SOURCES = data.h data.cc
112 ## test_time_SOURCES = time.h time.cc