Ticket #120 Change libtool's shared library version info to 3:0:1 to preserve the previous library version of 2.1.0. See https://autotools.io/libtool/version.html for the details on how libtool handles this versioning info. See https://verbump.de/ for a handy 'version calculator' using libtools rules.
29 lines
485 B
Makefile
29 lines
485 B
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
SUBDIRS = util TermPrim Term TermView
|
|
|
|
lib_LTLIBRARIES = libDtTerm.la
|
|
|
|
libDtTerm_la_SOURCES =
|
|
|
|
libDtTerm_la_LIBADD = Term/libTerm.la TermPrim/libTermPrim.la \
|
|
TermView/libTermView.la
|
|
|
|
if OPENBSD
|
|
libDtTerm_la_LIBADD += -lutil
|
|
endif
|
|
|
|
if FREEBSD
|
|
libDtTerm_la_LIBADD += -lutil
|
|
endif
|
|
|
|
if SOLARIS
|
|
libDtTerm_la_LIBADD += -ldl -lgen
|
|
endif
|
|
|
|
if HAS_UTEMPTER_LIBRARY
|
|
libDtTerm_la_LIBADD += -lutempter
|
|
endif
|
|
|
|
libDtTerm_la_LDFLAGS = -version-info 3:0:1
|