From f7c66ee8b34b758e71979bab6eca0f3e9cce262e Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Thu, 5 Sep 1996 00:00:04 +0000 Subject: [PATCH] * Makefile.in: Added gdb_interface.h, gdbint.[hc]. Added -I.. to INCLUDE_CFLAGS (otherwise the include files won't be found if object files and source are kept separate). --- libguile/Makefile.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libguile/Makefile.in b/libguile/Makefile.in index ffc50e518..4591f1205 100644 --- a/libguile/Makefile.in +++ b/libguile/Makefile.in @@ -62,7 +62,7 @@ CFLAGS=@CFLAGS@ # Check for headers in $(srcdir)/.., so that #include # will find MUMBLE.h in this dir when we're # building. -INCLUDE_CFLAGS=-I. -I$(srcdir)/.. -I$(srcdir) +INCLUDE_CFLAGS=-I. -I.. -I$(srcdir)/.. -I$(srcdir) ALL_CFLAGS=$(X_CFLAGS) $(INCLUDE_CFLAGS) $(X11_INCLUDES) @DEFS@ CC=@CC@ $(ALL_CFLAGS) @@ -97,6 +97,7 @@ libobjs= alist.o \ filesys.o \ fports.o \ gc.o \ + gdbint.o \ genio.o \ gsubr.o \ hash.o \ @@ -173,6 +174,8 @@ inner_h_files= __scm.h \ filesys.h \ fports.h \ gc.h \ + gdb_interface.h \ + gdbint.h \ genio.h \ gsubr.h \ hash.h \ @@ -246,6 +249,7 @@ c_files= alist.c \ filesys.c \ fports.c \ gc.c \ + gdbint.c \ genio.c \ gsubr.c \ hash.c \