makefile.in

来自「freeradius-server-2.1.3.tar.gz安装源文件」· IN 代码 · 共 34 行

IN
34
字号
######################################################################### TARGET should be set by autoconf only.  Don't touch it.## The SRCS definition should list ALL source files.## The HEADERS definition should list ALL header files## RLM_CFLAGS defines addition C compiler flags.  You usually don't# want to modify this, though.  Get it from autoconf.## The RLM_LIBS definition should list ALL required libraries.# These libraries really should be pulled from the 'config.mak'# definitions, if at all possible.  These definitions are also# echoed into another file in ../lib, where they're picked up by# ../main/Makefile for building the version of the server with# statically linked modules.  Get it from autoconf.## RLM_INSTALL is the names of additional rules you need to install# some particular portion of the module.  Usually, leave it blank.########################################################################TARGET         = @targetname@SRCS           = otp_rlm.c otp_radstate.c otp_pwe.c otp_pw_valid.cSRCS          += otp_util.c otp_mppe.cHEADERS        = extern.h otp_pw_valid.h otp_mppe.hRLM_CFLAGS     = @otp_cflags@ $(OPENSSL_INCLUDE)RLM_LIBS       = @otp_ldflags@ $(OPENSSL_LIBS)## this uses the RLM_CFLAGS and RLM_LIBS and SRCS defs to make TARGET.include ../rules.mak$(LT_OBJS): $(HEADERS) $(CARDOPS_LTLIBS)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?