Skip to content
Snippets Groups Projects
Commit c0248da3 authored by Per Cederqvist's avatar Per Cederqvist
Browse files

Create .gdbinit from the Makefile (with make .gdbinit).

parent 16ef7cf0
No related branches found
No related tags found
No related merge requests found
# #
# $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. # Copyright (C) 1991 Lysator Academic Computer Association.
# #
# This file is part of the LysKOM server. # This file is part of the LysKOM server.
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
# #
# Please mail bug reports to bug-lyskom@lysator.liu.se. # 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 include Topdir.make
SCRIPTDIR = $(TOPDIR)/scripts SCRIPTDIR = $(TOPDIR)/scripts
...@@ -89,7 +89,7 @@ DBCK_SRCS = dbck.c dbck-cache.c ram-smalloc.c ram-parse.c server-config.c\ ...@@ -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\ 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) SRCS = $(GEN_SRCS) $(RAM_SRCS) $(DISK_SRCS) $(LYS_SRCS) $(DBCK_SRCS)
...@@ -129,6 +129,14 @@ fncdef-no-str-limit.txt: fncdef.txt ...@@ -129,6 +129,14 @@ fncdef-no-str-limit.txt: fncdef.txt
(echo \# Do not edit this file! It is generated from 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 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) install: $(PROGRAMS)
echo Server not installed. echo Server not installed.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment