From c0248da34ec9f1ee584df531b8bebaa595e9830a Mon Sep 17 00:00:00 2001
From: Per Cederqvist <ceder@lysator.liu.se>
Date: Tue, 17 Sep 1991 20:53:05 +0000
Subject: [PATCH] Create .gdbinit from the Makefile (with make .gdbinit).

---
 src/server/Makefile | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/src/server/Makefile b/src/server/Makefile
index 3160f07b3..3d00eff80 100755
--- a/src/server/Makefile
+++ b/src/server/Makefile
@@ -1,5 +1,5 @@
 #
-# $Id: Makefile,v 0.14 1991/09/15 10:33:29 linus Exp $
+# $Id: Makefile,v 0.15 1991/09/17 20:53:05 ceder Exp $
 # Copyright (C) 1991  Lysator Academic Computer Association.
 #
 # This file is part of the LysKOM server.
@@ -22,7 +22,7 @@
 #
 # Please mail bug reports to bug-lyskom@lysator.liu.se. 
 #
-# $Id: Makefile,v 0.14 1991/09/15 10:33:29 linus Exp $
+# $Id: Makefile,v 0.15 1991/09/17 20:53:05 ceder Exp $
 
 include Topdir.make
 SCRIPTDIR = $(TOPDIR)/scripts
@@ -89,7 +89,7 @@ DBCK_SRCS = dbck.c dbck-cache.c ram-smalloc.c ram-parse.c server-config.c\
 
 
 SPECIALS = call-switch.incl com.h fnc-def-init.incl prot-a-parse-arg.c\
-	prot-a-parse-arg.h fncdef-no-str-limit.txt
+	prot-a-parse-arg.h fncdef-no-str-limit.txt .gdbinit
 
 SRCS = $(GEN_SRCS) $(RAM_SRCS) $(DISK_SRCS) $(LYS_SRCS) $(DBCK_SRCS)
 
@@ -129,6 +129,14 @@ fncdef-no-str-limit.txt: fncdef.txt
 	(echo \# Do not edit this file! It is generated from fncdef.txt.;\
 	cat fncdef.txt) | sed 's/([^)]*)//g' > fncdef-no-str-limit.txt
 
+.gdbinit: Topdir.make
+	$(RM) -f .gdbinit
+	echo handle 13 nostop noprint 			>.gdbinit
+	echo dir $(TOPDIR)/src/libraries/libcommon	>>.gdbinit
+	echo dir $(TOPDIR)/src/libraries/libansi	>>.gdbinit
+	echo dir $(TOPDIR)/src/libraries/libisc		>>.gdbinit
+	echo dir $(TOPDIR)/src/libraries/libmisc	>>.gdbinit
+
 
 install:  $(PROGRAMS)
 	echo Server not installed.
-- 
GitLab