#
# Imakefile for Discuss include directory.
#

INSTALLED_HEADERS = com_err.h usp_et.h ss.h ss_err.h

all:

config:
	sed -n  -e 's#__SERVER__#$(DS_SERVER)#' \
                -e 's#__SERVER_LOCAL__#$(DS_SERVERLOCAL)#' \
                -e 's#__SERVER_NAME__#$(DS_SERVERNAME)#' \
                -e 's#__INFO_DIR__#$(DS_INFODIR)#' \
                -e 's#__REALM__#$(DS_REALM)#' \
                -e 's#__SERVICE_NAME__#$(DS_SERVICENAME)#' \
                -e 's#__SERVICE_PORT__#$(DS_SERVICEPORT)#' \
                -e 's#__DSPIPE__#$(DS_DSPIPE)#' \
                -e 's#__DSC_SETUP__#$(DS_DSCSETUP)#' \
                -e p < config-proto.h > config-new.h
	$(MOVE_IF_CHANGE) config-new.h config.h

LintTarget()

depend:

clean::
	$(RM) $(INSTALLED_HEADERS)
