# $Source$ # $Author$ # $Header$ # # Copyright 1988 by the Massachusetts Institute of Technology. # # For copying and distribution information, please see the file # . # # Makefile for copying Imake configuration files LNSOURCES = \ ${SRCDIR}/util/imake.includes/Imake.rules \ ${SRCDIR}/util/imake.includes/Imake.template CPSOURCES = ${SRCDIR}/util/imake.includes/config.Imakefile DESTDIR = SRCDIR = /mit/kerberos/src CP = cp LN = ln -s RM = rm -f config: $(SOURCES) -mkdir $(DESTDIR)/util/imake.includes for i in $(CPSOURCES); do \ $(RM) ${DESTDIR}/util/imake.includes/`basename $$i`; \ $(CP) $$i ${DESTDIR}/util/imake.includes/`basename $$i`; done for i in $(LNSOURCES); do \ $(RM) ${DESTDIR}/util/imake.includes/`basename $$i`; \ $(LN) $$i ${DESTDIR}/util/imake.includes/`basename $$i`; done