####################################################################### # # 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 = x99_rlm.c x99_util.c x99_state.c x99_mac.c x99_sync.c SRCS += x99_site.c x99_pwe.c x99_log.c HEADERS = x99.h x99_rad.h x99_sync.h x99_pwe.h RLM_CFLAGS = @x99_token_cflags@ RLM_LIBS = @x99_token_ldflags@ ## this uses the RLM_CFLAGS and RLM_LIBS and SRCS defs to make TARGET. include ../rules.mak $(STATIC_OBJS): $(HEADERS) $(DYNAMIC_OBJS): $(HEADERS)