Files
bongo/src/apps/testtool/Bongo.rules
T
alexhudson 698cda51d7 Initial stab at DNS code, including:
* new check tool for querying MX records,
* dns test harness
2007-08-17 20:11:44 +00:00

27 lines
699 B
Makefile

# -*- Makefile -*-
sbin_PROGRAMS += bongo-testtool
bongo_testtool_SOURCES := \
$(conf_defaults) \
src/apps/testtool/config.h \
src/apps/testtool/testtool.c
bongo_testtool_CPPFLAGS := $(AM_CPPFLAGS) \
$(GNUTLS_CFLAGS)
bongo_testtool_LDADD := \
libbongonmap.la \
libbongomsgapi.la \
libbongoconnio.la \
libbongomemmgr.la \
libbongoutil.la \
libbongoxpl.la \
$(PTHREAD_LIBS) \
$(GNUTLS_LIBS) \
$(ALL_LIBS)
src/apps/testtool/all: bongo-testtool
src/apps/testtool/clean: clean
src/apps/testtool/install:
@cd $(top_builddir) && $(MAKE) $(MFLAGS) sbin_PROGRAMS=bongo-testtool install-sbinPROGRAMS