##############################
# Global
##############################
AUTOMAKE_OPTIONS = 1.7
noinst_PROGRAMS = \
testdns \
testinterfaces \
testtcp \
testudp \
testunix
# ############################################### #
# Common #
# ############################################### #
AM_CPPFLAGS = \
$(GNETWORK_CFLAGS) \
-I$(top_srcdir) \
-I$(top_builddir)
AM_CFLAGS = \
$(WARN_CFLAGS)
LDADD = \
$(GNETWORK_LIBS) \
$(SSL_LIBS) \
$(top_builddir)/libgnetwork/libgnetwork-$(GNETWORK_API_VERSION).la
# ############################################### #
# GNetworkDns Tests #
# ############################################### #
testdns_SOURCES = \
testdns.c
# ############################################### #
# GNetworkInterfaceInfo Tests #
# ############################################### #
testinterfaces_SOURCES = \
testinterfaces.c
# ############################################### #
# GNetworkTcpServer/GNetworkTcpConnection Tests #
# ############################################### #
testtcp_SOURCES = \
testtcp.c
# ############################################### #
# GNetworkUdpDatagram Tests #
# ############################################### #
testudp_SOURCES = \
testudp.c
# ################################################# #
# GNetworkUnixServer/GNetworkUnixConnection Tests #
# ################################################# #
testunix_SOURCES = \
testunix.c
##############################
# Miscellaneous Autojunk
##############################
MAINTAINERCLEANFILES = \
Makefile.in
syntax highlighted by Code2HTML, v. 0.9.1