Home | History | Annotate | Line # | Download | only in ns
Makefile.am revision 1.1
      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/events.h		\
     13  1.1  christos 	include/ns/hooks.h		\
     14  1.1  christos 	include/ns/interfacemgr.h	\
     15  1.1  christos 	include/ns/listenlist.h		\
     16  1.1  christos 	include/ns/log.h		\
     17  1.1  christos 	include/ns/notify.h		\
     18  1.1  christos 	include/ns/query.h		\
     19  1.1  christos 	include/ns/server.h		\
     20  1.1  christos 	include/ns/sortlist.h		\
     21  1.1  christos 	include/ns/stats.h		\
     22  1.1  christos 	include/ns/types.h		\
     23  1.1  christos 	include/ns/update.h		\
     24  1.1  christos 	include/ns/xfrout.h
     25  1.1  christos 
     26  1.1  christos libns_la_SOURCES =		\
     27  1.1  christos 	$(libns_la_HEADERS)	\
     28  1.1  christos 	client.c		\
     29  1.1  christos 	hooks.c			\
     30  1.1  christos 	interfacemgr.c		\
     31  1.1  christos 	listenlist.c		\
     32  1.1  christos 	log.c			\
     33  1.1  christos 	notify.c		\
     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