]> andersk Git - moira.git/blame - util/imake.includes/Makefile
remove mkdir of $(DESTDIR)/util to avoid excessive errors.
[moira.git] / util / imake.includes / Makefile
CommitLineData
7e4279ca 1# $Source$
2# $Author$
3# $Header$
4#
5# Copyright 1988 by the Massachusetts Institute of Technology.
6#
7# For copying and distribution information, please see the file
8# <mit-copyright.h>.
9#
10# Makefile for copying Imake configuration files
478bf647 11LNSOURCES = \
7e4279ca 12 ${SRCDIR}/util/imake.includes/Imake.rules \
478bf647 13 ${SRCDIR}/util/imake.includes/Imake.template
14CPSOURCES = ${SRCDIR}/util/imake.includes/config.Imakefile
7e4279ca 15DESTDIR =
16SRCDIR = /mit/kerberos/src
478bf647 17CP = cp
18LN = ln -s
7e4279ca 19RM = rm -f
20
21config: $(SOURCES)
7e4279ca 22 -mkdir $(DESTDIR)/util/imake.includes
478bf647 23 for i in $(CPSOURCES); do \
7e4279ca 24 $(RM) ${DESTDIR}/util/imake.includes/`basename $$i`; \
25 $(CP) $$i ${DESTDIR}/util/imake.includes/`basename $$i`; done
478bf647 26 for i in $(LNSOURCES); do \
27 $(RM) ${DESTDIR}/util/imake.includes/`basename $$i`; \
28 $(LN) $$i ${DESTDIR}/util/imake.includes/`basename $$i`; done
7e4279ca 29
This page took 0.049993 seconds and 5 git commands to generate.