]> andersk Git - moira.git/blob - util/imake.includes/Makefile
998f31c31298cae06f812c04c718006d56854fd6
[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 LNSOURCES = \
12         ${SRCDIR}/util/imake.includes/Imake.rules \
13         ${SRCDIR}/util/imake.includes/Imake.template
14 CPSOURCES = ${SRCDIR}/util/imake.includes/config.Imakefile
15 DESTDIR =
16 SRCDIR = /mit/kerberos/src
17 CP = cp
18 LN = ln -s
19 RM = rm -f
20
21 config: $(SOURCES)
22         -mkdir $(DESTDIR)/util
23         -mkdir $(DESTDIR)/util/imake.includes
24         for i in $(CPSOURCES); do \
25                 $(RM) ${DESTDIR}/util/imake.includes/`basename $$i`; \
26                 $(CP) $$i ${DESTDIR}/util/imake.includes/`basename $$i`; done
27         for i in $(LNSOURCES); do \
28                 $(RM) ${DESTDIR}/util/imake.includes/`basename $$i`; \
29                 $(LN) $$i ${DESTDIR}/util/imake.includes/`basename $$i`; done
30
This page took 0.031788 seconds and 3 git commands to generate.