### Installation paths and compiled-in defaults # DIR_BIN = /usr/local/bin DIR_SBIN = /usr/local/sbin DIR_ETC = /usr/local/etc/openradius DIR_LIB = /usr/local/lib/openradius FILE_LOG = /var/log/openradius.log ### Modules that will be built and installed # TGT_LIB += modules/ascfile/ascfile TGT_LIB += modules/unixpasswd/unixpasswd TGT_LIB += modules/radlogger/radlogger TGT_LIB += modules/delay/delay TGT_LIB += modules/radsql/radsql #TGT_LIB += modules/radldap/radldap ### System compatibility flags, used in some targets' CF_TGT, LF_TGT or LL_TGT # S_CF_U_INT32_T = -DU_INT32_T=unsigned S_CF_SYSLOG = -DHAVE_SYSLOG S_CF_VSNPRINTF = -DHAVE_VSNPRINTF S_CF_SIGACTION = S_LL_INET = ### Build flags for all targets # #CF_ALL = -O2 #LF_ALL = -s #LL_ALL = CF_ALL = -g LF_ALL = -g LL_ALL = ### Module-specific build flags # CF_RADLDAP = -I/usr/local/include/openldap LF_RADLDAP = -L/usr/local/lib LL_RADLDAP = -lldap ### Build tools # # The C compiler named here should output full (header) dependencies in $(@).d. # It may be necessary to create a script similar to ccd-gcc for your compiler. # You can build successfully without such a script, but you then need a # make clean if you want to ensure that everything will be rebuilt correctly. # #CMPLR = ./build/ccd-gcc CMPLR = $(CC) DEFHDR = ./build/hdr INST = ./build/install ARCHIVE = ar rc $@ $^ # COMP = $(CMPLR) $(CF_ALL) $(CF_TGT) -o $@ -c $< LINK = $(CMPLR) $(LF_ALL) $(LF_TGT) -o $@ $^ $(LL_TGT) $(LL_ALL) COMPLINK = $(CMPLR) $(CF_ALL) $(CF_TGT) -o $(<).o -c $< ; $(CMPLR) $(LF_ALL) $(LF_TGT) -o $@ $(<).o $(LL_TGT) $(LL_ALL) ; rm -f $(<).o ### Standard parts # include Rules.mk