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.
18 lines
389 B
Makefile
18 lines
389 B
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
lib_LTLIBRARIES = libDtPrint.la
|
|
|
|
libDtPrint_la_CFLAGS = -DMULTIBYTE -DI18N_MSG @DT_INCDIR@
|
|
libDtPrint_la_LDFLAGS = -version-info 3:0:1
|
|
|
|
if SOLARIS
|
|
libDtPrint_la_CFLAGS += -DNO_REGCOMP
|
|
endif
|
|
|
|
if HPUX
|
|
libDtPrint_la_CFLAGS += -DMESSAGE_CAT
|
|
endif
|
|
|
|
libDtPrint_la_SOURCES = PrintMsgs.c PrintDlgMgr.c PrintOptions.c PrintSetupB.c \
|
|
PsubDefProc.c PsubUtil.c
|