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.
12 lines
269 B
Makefile
12 lines
269 B
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
lib_LTLIBRARIES = libDtPamSvc.la
|
|
|
|
# the PamSvc.h header file is located in include/Dt/
|
|
libDtPamSvc_la_SOURCES = PamSvc.c ${top_srcdir}/include/Dt/PamSvc.h
|
|
|
|
libDtPamSvc_la_LIBADD = -lpam
|
|
|
|
libDtPamSvc_la_LDFLAGS = -version-info 3:0:1
|
|
|