#
# This allows dlopen to do runtime checks for version mistmatches
-# between what it was originally linked with the the library it's
+# between what it was originally linked with, and the library it's
# actually loading.
#
LDFLAGS += -release=$(RADIUSD_VERSION_STRING)
install.src.include: $(addprefix ${SRC_INCLUDE_DIR}/,${HEADERS})
# install the headers by re-writing the local files
+#
+# install-sh function for creating directories gets confused
+# if there's a trailing slash, tries to create a directory
+# it already created, and fails...
${SRC_INCLUDE_DIR}/%.h: ${top_srcdir}/src/include/%.h
@echo INSTALL $(notdir $<)
- # install-sh function for creating directories gets confused
- # if there's a trailing slash, tries to create a directory
- # it already created, and fails...
@$(INSTALL) -d -m 755 `echo $(dir $@) | sed 's/\/$$//'`
@sed 's/^#include <freeradius-devel/#include <freeradius/' < $< > $@
@chmod 644 $@