cryb-otp/sbin/otpradiusd/Makefile.am
Dag-Erling Smørgrav be6f32b5bd Proof-of-concept RADIUS server.
It is not yet capable of handling OTP requests, but all the elements are there: it can receive and decode Access-Request messages and respond with either Access-Accept or Access-Reject.  All that remains is to refactor the guts of otpkey into libotp and plug them into otpradiusd.
2022-09-16 15:26:25 +02:00

27 lines
454 B
Makefile

AM_CPPFLAGS = -I$(top_srcdir)/include
libotp = $(top_builddir)/lib/otp/libcryb-otp.la
sbin_PROGRAMS = otpradiusd
otpradiusd_SOURCES = \
auth.c \
main.c \
network.c \
radius.c \
resolver.c
otpradiusd_CFLAGS = \
$(CRYB_OATH_CFLAGS) \
$(CRYB_DIGEST_CFLAGS) \
$(CRYB_CORE_CFLAGS)
otpradiusd_LDADD = \
$(libotp) \
$(CRYB_OATH_CFLAGS) \
$(CRYB_DIGEST_CFLAGS) \
$(CRYB_CORE_CFLAGS)
dist_man8_MANS = otpradiusd.8
noinst_HEADERS = otpradiusd.h