Home | History | Annotate | Line # | Download | only in dig
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 	$(LIBISC_CFLAGS)	\
      5  1.1  christos 	$(LIBDNS_CFLAGS)	\
      6  1.1  christos 	$(LIBISCCFG_CFLAGS)	\
      7  1.1  christos 	$(LIBIRS_CFLAGS)	\
      8  1.1  christos 	$(LIBBIND9_CFLAGS)	\
      9  1.1  christos 	$(LIBIDN2_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 	$(LIBIRS_LIBS)		\
     17  1.1  christos 	$(LIBBIND9_LIBS)	\
     18  1.1  christos 	$(LIBIDN2_LIBS)
     19  1.1  christos 
     20  1.1  christos noinst_LTLIBRARIES = libdighost.la
     21  1.1  christos 
     22  1.1  christos libdighost_la_SOURCES =		\
     23  1.1  christos 	dighost.h		\
     24  1.1  christos 	dighost.c
     25  1.1  christos 
     26  1.1  christos bin_PROGRAMS = dig host nslookup
     27  1.1  christos 
     28  1.1  christos nslookup_CPPFLAGS =		\
     29  1.1  christos 	$(AM_CPPFLAGS)
     30  1.1  christos 
     31  1.1  christos nslookup_LDADD =		\
     32  1.1  christos 	$(LDADD)
     33  1.1  christos 
     34  1.1  christos if HAVE_READLINE
     35  1.1  christos nslookup_CPPFLAGS +=		\
     36  1.1  christos 	$(READLINE_CFLAGS)
     37  1.1  christos nslookup_LDADD +=		\
     38  1.1  christos 	$(READLINE_LIBS)
     39  1.1  christos endif HAVE_READLINE
     40