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.
42 lines
850 B
Makefile
42 lines
850 B
Makefile
10 years ago
|
## Process this file with automake to produce Makefile.in
|
||
|
|
||
|
AM_CPPFLAGS = \
|
||
|
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
|
||
|
-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
|
||
|
-DPACKAGE_DATA_DIR=\""$(pkgdatadir)"\" \
|
||
9 years ago
|
$(LIBSXMP_CFLAGS) -I../include
|
||
10 years ago
|
|
||
|
AM_CFLAGS =\
|
||
|
-Wall\
|
||
|
-g
|
||
|
|
||
9 years ago
|
lib_LTLIBRARIES = libsxmp.la
|
||
10 years ago
|
|
||
|
|
||
9 years ago
|
libsxmp_la_SOURCES = \
|
||
9 years ago
|
sxmplv2.c hub.c channel.c message.c rpc.c \
|
||
9 years ago
|
uuid.c stream_generic_listops.c stream.c \
|
||
|
base64.c error.c
|
||
10 years ago
|
|
||
9 years ago
|
libsxmp_la_LDFLAGS =
|
||
9 years ago
|
|
||
9 years ago
|
libsxmp_la_LIBADD = -lpthread -lcrypto $(OPENSSL_LIBS)
|
||
|
|
||
9 years ago
|
if COND_WIN32
|
||
9 years ago
|
|
||
9 years ago
|
libsxmp_la_LDFLAGS += -no-undefined
|
||
9 years ago
|
libsxmp_la_LIBADD += -lmman -luuid /mingw64/lib/libsexpr.a /mingw64/lib/libtdata.a
|
||
10 years ago
|
|
||
10 years ago
|
else
|
||
9 years ago
|
|
||
9 years ago
|
libsxmp_la_LIBADD += $(LIBUUID_LIBS) ../tdata/.libs/libtdata.la ../sexpr/.libs/libsexpr.la
|
||
9 years ago
|
|
||
|
endif !COND_WIN32
|
||
10 years ago
|
|
||
|
pkgconfigdir = $(libdir)/pkgconfig
|
||
9 years ago
|
pkgconfig_DATA = libsxmp.pc
|
||
10 years ago
|
|
||
|
EXTRA_DIST = \
|
||
9 years ago
|
libsxmp.pc.in
|
||
10 years ago
|
|