From f45755cfb4ecbf1a0bd266ed70fb6fa62db19f05 Mon Sep 17 00:00:00 2001 From: jtkohl Date: Mon, 16 Jan 1989 21:06:19 +0000 Subject: [PATCH] add 'config' target. --- util/imake/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/util/imake/Makefile b/util/imake/Makefile index da7d86d4..5bc2e080 100644 --- a/util/imake/Makefile +++ b/util/imake/Makefile @@ -7,6 +7,10 @@ MAKE = make RM_CMD = $(RM) *.CKP *.ln *.BAK *.bak *.o core errs ,* *~ *.a \ tags TAGS make.log + LN = cp + DESTDIR = + SRCDIR = /mit/kerberos/src + SOURCES = imake.c ccflags.c Makefile all: imake @@ -33,3 +37,10 @@ tags: install: Makefiles: + +config: $(SOURCES) + -mkdir $(DESTDIR)/util + -mkdir $(DESTDIR)/util/imake + for i in $(SOURCES); do \ + $(RM) ${DESTDIR}/util/imake/$$i; \ + $(LN) $$i ${DESTDIR}/util/imake/$$i; done -- 2.45.2