Home | History | Annotate | Line # | Download | only in dig
      1      1.1  christos include $(top_srcdir)/Makefile.top
      2      1.1  christos 
      3      1.1  christos AM_CPPFLAGS +=			\
      4      1.1  christos 	$(LIBISC_CFLAGS)	\
      5      1.1  christos 	$(LIBDNS_CFLAGS)	\
      6      1.1  christos 	$(LIBISCCFG_CFLAGS)	\
      7  1.1.1.2  christos 	$(LIBIDN2_CFLAGS)	\
      8  1.1.1.2  christos 	$(LIBUV_CFLAGS)		\
      9  1.1.1.2  christos 	$(OPENSSL_CFLAGS)
     10      1.1  christos 
     11      1.1  christos LDADD +=			\
     12      1.1  christos 	libdighost.la		\
     13      1.1  christos 	$(LIBISC_LIBS)		\
     14      1.1  christos 	$(LIBDNS_LIBS)		\
     15      1.1  christos 	$(LIBISCCFG_LIBS)	\
     16      1.1  christos 	$(LIBIDN2_LIBS)
     17      1.1  christos 
     18      1.1  christos noinst_LTLIBRARIES = libdighost.la
     19      1.1  christos 
     20      1.1  christos libdighost_la_SOURCES =		\
     21      1.1  christos 	dighost.h		\
     22      1.1  christos 	dighost.c
     23      1.1  christos 
     24      1.1  christos bin_PROGRAMS = dig host nslookup
     25      1.1  christos 
     26      1.1  christos nslookup_CPPFLAGS =		\
     27      1.1  christos 	$(AM_CPPFLAGS)
     28      1.1  christos 
     29      1.1  christos nslookup_LDADD =		\
     30      1.1  christos 	$(LDADD)
     31      1.1  christos 
     32      1.1  christos if HAVE_READLINE
     33      1.1  christos nslookup_CPPFLAGS +=		\
     34      1.1  christos 	$(READLINE_CFLAGS)
     35      1.1  christos nslookup_LDADD +=		\
     36      1.1  christos 	$(READLINE_LIBS)
     37      1.1  christos endif HAVE_READLINE
     38