The `render` benchmark loads some binary DNS message dumps and repeatedly passes them to `dns_message_render`. The `compress` benchmark loads a list of domain names and packs them into 4KiB chunks using `dns_name_towire`.
16 lines
209 B
Makefile
16 lines
209 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS)
|
|
|
|
LDADD += \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS)
|
|
|
|
noinst_PROGRAMS = \
|
|
ascii \
|
|
compress \
|
|
render \
|
|
siphash
|