]> andersk Git - moira.git/blob - util/imake.includes/Makefile
7935285bf61df7825a9174393ccfc3145f45a61a
[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.tmpl
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/imake.includes
23         for i in $(CPSOURCES); do \
24                 $(RM) ${DESTDIR}/util/imake.includes/`basename $$i`; \
25                 $(CP) $$i ${DESTDIR}/util/imake.includes/`basename $$i`; done
26         for i in $(LNSOURCES); do \
27                 $(RM) ${DESTDIR}/util/imake.includes/`basename $$i`; \
28                 $(LN) $$i ${DESTDIR}/util/imake.includes/`basename $$i`; done
29
This page took 0.02851 seconds and 3 git commands to generate.