From 7f51cde4ab2235b4d974689095ba402703bb165a Mon Sep 17 00:00:00 2001 From: Linus Tolke Y <linus@lysator.liu.se> Date: Mon, 10 Feb 1992 02:54:07 +0000 Subject: [PATCH] mkdir replaced by $(MKDIR). --- Makefile | 12 ++++++------ src/include/server/Makefile | 4 ++-- src/libraries/libcommon/Makefile | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index 952e148ae..2339484c3 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 0.34 1991/12/17 23:17:23 ceder Exp $ +# $Id: Makefile,v 0.35 1992/02/10 02:53:22 linus Exp $ # Copyright (C) 1991 Lysator Academic Computer Association. # # This file is part of the LysKOM server. @@ -41,7 +41,7 @@ includes: $(INCLUDEDIR) $(INCLUDEDIR)/m-config.h libraries: $(INCLUDEDIR) $(INCLUDEDIR)/m-config.h - -mkdir $(LIBDIR) + -$(MKDIR) $(LIBDIR) for i in $(SUBDIRS) ; \ do \ [ -d $$i ] && { echo making libraries in directory $$i; \ @@ -79,14 +79,14 @@ depend: $(INCLUDEDIR) $(INCLUDEDIR)/m-config.h msg includes distribution: distclean find . -name '#*#' -print -$(RM) -r lyskom-$(SERVER-VER) - mkdir lyskom-$(SERVER-VER) + $(MKDIR) lyskom-$(SERVER-VER) cp README-serverrelease lyskom-$(SERVER-VER)/README cp COPYING INSTALL Config Build Makefile lyskom-$(SERVER-VER)/ - mkdir lyskom-$(SERVER-VER)/src + $(MKDIR) lyskom-$(SERVER-VER)/src cp src/Makefile lyskom-$(SERVER-VER)/src/ - mkdir lyskom-$(SERVER-VER)/src/libraries + $(MKDIR) lyskom-$(SERVER-VER)/src/libraries cp src/libraries/Makefile lyskom-$(SERVER-VER)/src/libraries/ - mkdir lyskom-$(SERVER-VER)/doc + $(MKDIR) lyskom-$(SERVER-VER)/doc for i in ADMINISTRATION Makefile misc_items prot-A.txt \ server-async.extend server.extend what-is-unread.swe; \ do \ diff --git a/src/include/server/Makefile b/src/include/server/Makefile index 88f5e3f89..d35c56373 100644 --- a/src/include/server/Makefile +++ b/src/include/server/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 0.10 1991/09/15 10:17:54 linus Exp $ +# $Id: Makefile,v 0.11 1992/02/10 02:53:56 linus Exp $ # Copyright (C) 1991 Lysator Academic Computer Association. # # This file is part of the LysKOM server. @@ -38,7 +38,7 @@ binaries:; .PHONY : includes includes: - -mkdir $(INCLUDEDIR)/server + -$(MKDIR) $(INCLUDEDIR)/server for i in $(INSTALL-HDRS);\ do \ ( cmp $$i $(INCLUDEDIR)/server/$$i 2>/dev/null ) \ diff --git a/src/libraries/libcommon/Makefile b/src/libraries/libcommon/Makefile index 841a4d05b..a1c9f31ab 100644 --- a/src/libraries/libcommon/Makefile +++ b/src/libraries/libcommon/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 0.9 1991/09/15 10:23:02 linus Exp $ +# $Id: Makefile,v 0.10 1992/02/10 02:54:07 linus Exp $ # Copyright (C) 1991 Lysator Academic Computer Association. # # This file is part of the LysKOM server. @@ -37,12 +37,12 @@ LIBRARIES = liblyskom-server.a liblyskom-client.a all: $(LIBRARIES) client-dir: - mkdir client-dir + $(MKDIR) client-dir ln -s `echo $(LIBOBJS) $(INSTALL-HDRS) dependencies Topdir.make | \ tr ' ' '\012' | sed 's/.o$$/.c/' | sed 's:^:\.\./:' ` client-dir/ server-dir: - mkdir server-dir + $(MKDIR) server-dir ln -s `echo $(LIBOBJS) $(INSTALL-HDRS) dependencies Topdir.make | \ tr ' ' '\012' | sed 's/.o$$/.c/' | sed 's:^:\.\./:' ` server-dir/ -- GitLab