Home | History | Annotate | Line # | Download | only in ns
      1      1.1  christos include $(top_srcdir)/Makefile.top
      2      1.1  christos 
      3      1.1  christos AM_CPPFLAGS +=				\
      4      1.1  christos 	-DNAMED_PLUGINDIR=\"$(pkglibdir)\"
      5      1.1  christos 
      6      1.1  christos lib_LTLIBRARIES = libns.la
      7      1.1  christos 
      8      1.1  christos libns_ladir = $(includedir)/ns
      9      1.1  christos 
     10      1.1  christos libns_la_HEADERS =			\
     11      1.1  christos 	include/ns/client.h		\
     12      1.1  christos 	include/ns/hooks.h		\
     13      1.1  christos 	include/ns/interfacemgr.h	\
     14      1.1  christos 	include/ns/listenlist.h		\
     15      1.1  christos 	include/ns/log.h		\
     16      1.1  christos 	include/ns/notify.h		\
     17      1.1  christos 	include/ns/query.h		\
     18      1.1  christos 	include/ns/server.h		\
     19      1.1  christos 	include/ns/sortlist.h		\
     20      1.1  christos 	include/ns/stats.h		\
     21      1.1  christos 	include/ns/types.h		\
     22      1.1  christos 	include/ns/update.h		\
     23      1.1  christos 	include/ns/xfrout.h
     24      1.1  christos 
     25      1.1  christos libns_la_SOURCES =		\
     26      1.1  christos 	$(libns_la_HEADERS)	\
     27      1.1  christos 	client.c		\
     28      1.1  christos 	hooks.c			\
     29      1.1  christos 	interfacemgr.c		\
     30      1.1  christos 	listenlist.c		\
     31      1.1  christos 	log.c			\
     32      1.1  christos 	notify.c		\
     33  1.1.1.2  christos 	probes.d		\
     34      1.1  christos 	query.c			\
     35      1.1  christos 	server.c		\
     36      1.1  christos 	sortlist.c		\
     37      1.1  christos 	stats.c			\
     38      1.1  christos 	update.c		\
     39      1.1  christos 	xfrout.c
     40      1.1  christos 
     41      1.1  christos libns_la_CPPFLAGS =				\
     42      1.1  christos 	$(AM_CPPFLAGS)				\
     43      1.1  christos 	$(LIBDNS_CFLAGS)			\
     44      1.1  christos 	$(LIBISC_CFLAGS)			\
     45      1.1  christos 	$(LIBNS_CFLAGS)				\
     46      1.1  christos 	$(LIBUV_CFLAGS)				\
     47      1.1  christos 	$(OPENSSL_CFLAGS)
     48      1.1  christos 
     49      1.1  christos libns_la_LIBADD =	\
     50      1.1  christos 	$(LIBDNS_LIBS)	\
     51      1.1  christos 	$(LIBISC_LIBS)	\
     52      1.1  christos 	$(LIBUV_LIBS)	\
     53      1.1  christos 	$(OPENSSL_LIBS)
     54      1.1  christos 
     55      1.1  christos libns_la_LDFLAGS =		\
     56      1.1  christos 	$(AM_LDFLAGS)		\
     57      1.1  christos 	-release "$(PACKAGE_VERSION)"
     58  1.1.1.2  christos 
     59  1.1.1.2  christos if !HAVE_SYSTEMTAP
     60  1.1.1.2  christos DTRACE_DEPS = libns_la-query.lo
     61  1.1.1.2  christos DTRACE_OBJS = .libs/libns_la-query.$(OBJEXT)
     62  1.1.1.2  christos endif
     63  1.1.1.2  christos 
     64  1.1.1.2  christos include $(top_srcdir)/Makefile.dtrace
     65  1.1.1.2  christos 
     66  1.1.1.2  christos libns_la_LIBADD += $(DTRACE_LIBADD)
     67