]> andersk Git - moira.git/blob - util/imake.includes/Makefile
changed names of some of the clients; and changed order or arguments
[moira.git] / util / imake.includes / Makefile
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
11 SOURCES = \
12         ${SRCDIR}/util/imake.includes/Imake.rules \
13         ${SRCDIR}/util/imake.includes/Imake.template \
14         ${SRCDIR}/util/imake.includes/config.Imakefile
15 DESTDIR =
16 SRCDIR = /mit/kerberos/src
17 CP = /bin/cp
18 RM = rm -f
19
20 config: $(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.05004 seconds and 5 git commands to generate.