Pull fix from branch_1_1
[freeradius.git] / src / modules / rlm_otp / Makefile.in
1 #######################################################################
2 #
3 # TARGET should be set by autoconf only.  Don't touch it.
4 #
5 # The SRCS definition should list ALL source files.
6 #
7 # The HEADERS definition should list ALL header files
8 #
9 # RLM_CFLAGS defines addition C compiler flags.  You usually don't
10 # want to modify this, though.  Get it from autoconf.
11 #
12 # The RLM_LIBS definition should list ALL required libraries.
13 # These libraries really should be pulled from the 'config.mak'
14 # definitions, if at all possible.  These definitions are also
15 # echoed into another file in ../lib, where they're picked up by
16 # ../main/Makefile for building the version of the server with
17 # statically linked modules.  Get it from autoconf.
18 #
19 # RLM_INSTALL is the names of additional rules you need to install
20 # some particular portion of the module.  Usually, leave it blank.
21 #
22 #######################################################################
23 TARGET         = @targetname@
24 SRCS           = otp_rlm.c otp_radstate.c otp_pwe.c otp_pw_valid.c
25 SRCS          += otp_util.c otp_mppe.c
26 HEADERS        = extern.h otp_pw_valid.h otp_mppe.h
27 RLM_CFLAGS     = @otp_cflags@ $(OPENSSL_INCLUDE)
28 RLM_LIBS       = @otp_ldflags@ $(OPENSSL_LIBS)
29
30 ## this uses the RLM_CFLAGS and RLM_LIBS and SRCS defs to make TARGET.
31 include ../rules.mak
32
33 $(LT_OBJS): $(HEADERS) $(CARDOPS_LTLIBS)