Home | History | Annotate | Line # | Download | only in rndc
      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 	$(LIBISCCC_CFLAGS)
      8      1.1  christos 
      9      1.1  christos AM_CPPFLAGS +=						\
     10      1.1  christos 	-DRNDC_CONFFILE=\"${sysconfdir}/rndc.conf\"	\
     11      1.1  christos 	-DRNDC_KEYFILE=\"${sysconfdir}/rndc.key\"
     12      1.1  christos 
     13      1.1  christos sbin_PROGRAMS = rndc
     14      1.1  christos 
     15      1.1  christos rndc_SOURCES =	\
     16      1.1  christos 	rndc.c	\
     17      1.1  christos 	util.c	\
     18      1.1  christos 	util.h
     19      1.1  christos 
     20      1.1  christos rndc_LDADD =			\
     21      1.1  christos 	$(LIBISC_LIBS)		\
     22      1.1  christos 	$(LIBDNS_LIBS)		\
     23      1.1  christos 	$(LIBISCCC_LIBS)	\
     24  1.1.1.2  christos 	$(LIBISCCFG_LIBS)
     25