You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
686 B
Makefile
35 lines
686 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
AM_CPPFLAGS = \
|
|
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
|
|
-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
|
|
-DPACKAGE_DATA_DIR=\""$(pkgdatadir)"\" \
|
|
$(LIBSNTL_CFLAGS) -I../include
|
|
|
|
AM_CFLAGS =\
|
|
-Wall\
|
|
-g
|
|
|
|
lib_LTLIBRARIES = libsntl.la
|
|
|
|
|
|
libsntl_la_SOURCES = \
|
|
connex.c sntllv2.c chansx.c messagesx.c rpclist.c uuid.c
|
|
|
|
libsntl_la_LDFLAGS =
|
|
|
|
libsntl_la_LIBADD = -lpthread -lcrypto $(LIBTDATA_LIBS) $(LIBSEXPR_LIBS) $(OPENSSL_LIBS)
|
|
|
|
if BUILD_WIN32
|
|
libsntl_la_LIBADD += -luuid
|
|
else
|
|
libsntl_la_LIBADD += $(LIBUUID_LIBS)
|
|
endif !BUILD_WIN32
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libsntl.pc
|
|
|
|
EXTRA_DIST = \
|
|
libsntl.pc.in
|
|
|