1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
# $Id$
noinst_LIBRARIES = libnetclient.a
libnetclient_a_SOURCES = \
net-client.c \
net-client.h \
net-client-pop.c \
net-client-pop.h \
net-client-siobuf.c \
net-client-siobuf.h \
net-client-smtp.c \
net-client-smtp.h \
net-client-utils.c \
net-client-utils.h
CLEANFILES = doxygen.log
SUBDIRS = test
AM_CFLAGS = $(LIBNETCLIENT_CFLAGS)
AM_CPPFLAGS = -DG_LOG_DOMAIN=\"libnetclient\"
EXTRA_DIST = \
meson.build
clean-local:
-rm -rf html
doc:
@DOXYGEN@ libnetclient.dox
|