]> andersk Git - moira.git/blame - util/imake.includes/Makefile
changed names of some of the clients; and changed order or arguments
[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
11SOURCES = \
12 ${SRCDIR}/util/imake.includes/Imake.rules \
13 ${SRCDIR}/util/imake.includes/Imake.template \
14 ${SRCDIR}/util/imake.includes/config.Imakefile
15DESTDIR =
16SRCDIR = /mit/kerberos/src
17CP = /bin/cp
18RM = rm -f
19
20config: $(SOURCES)
21 -mkdir $(DESTDIR)/util
22 -mkdir $(DESTDIR)/util/imake.includes
23 for i in $(SOURCES); do \
24 $(RM) ${DESTDIR}/util/imake.includes/`basename $$i`; \
25 $(CP) $$i ${DESTDIR}/util/imake.includes/`basename $$i`; done
26
This page took 0.14479 seconds and 5 git commands to generate.