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
782 B
Makefile
35 lines
782 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)"\" \
|
|
$(LIBYDAEMON_CFLAGS) -I../include
|
|
|
|
AM_CFLAGS =\
|
|
-Wall\
|
|
-g
|
|
|
|
lib_LTLIBRARIES = libydaemon.la
|
|
|
|
|
|
libydaemon_la_SOURCES = \
|
|
values.c functions.c log.c module.c \
|
|
daemon.c context.c data.c cache.c \
|
|
domx.c filter.c idxstream.c
|
|
|
|
libydaemon_la_LDFLAGS = -Wl,--export-dynamic
|
|
|
|
# where to find other libs ...
|
|
LIBTDATA_LIBSLA = ../tdata/.libs/libtdata.la
|
|
LIBSEXPR_LIBSLA = ../sexpr/.libs/libsexpr.la
|
|
|
|
libydaemon_la_LIBADD = -lpthread -lcrypto -ldl $(LIBTDATA_LIBSLA) $(LIBSEXPR_LIBSLA)
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libydaemon.pc
|
|
|
|
EXTRA_DIST = \
|
|
libydaemon.pc.in
|
|
|