mirror of
https://github.com/matrix-construct/construct
synced 2024-11-03 04:18:55 +01:00
34 lines
497 B
Makefile
34 lines
497 B
Makefile
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/include \
|
|
@BOOST_CPPFLAGS@
|
|
|
|
AM_LDFLAGS = \
|
|
-L$(top_srcdir)/rb \
|
|
@BOOST_LDFLAGS@
|
|
|
|
|
|
bin_PROGRAMS = authd
|
|
|
|
authd_LDADD = \
|
|
$(top_srcdir)/rb/librb.la \
|
|
@BOOST_LIBS@
|
|
|
|
authd_SOURCES = \
|
|
authd.cc \
|
|
dns.cc \
|
|
getaddrinfo.cc \
|
|
getnameinfo.cc \
|
|
notice.cc \
|
|
provider.cc \
|
|
res.cc \
|
|
reslib.cc \
|
|
reslist.cc \
|
|
providers/blacklist.cc \
|
|
providers/ident.cc \
|
|
providers/rdns.cc \
|
|
providers/opm.cc
|
|
|
|
|
|
mrproper-local:
|
|
rm -rf providers/.deps
|
|
rm -f providers/.dirstamp
|