mirror of
https://github.com/cryb-to/cryb-otp.git
synced 2025-01-09 21:21:19 +00:00
be6f32b5bd
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.
27 lines
454 B
Makefile
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
|