1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* 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).
This commit is contained in:
Mikael Djurfeldt 1996-09-05 00:00:04 +00:00
parent 2e11a5778a
commit f7c66ee8b3

View file

@ -62,7 +62,7 @@ CFLAGS=@CFLAGS@
# Check for headers in $(srcdir)/.., so that #include # Check for headers in $(srcdir)/.., so that #include
# <libguile/MUMBLE.h> will find MUMBLE.h in this dir when we're # <libguile/MUMBLE.h> will find MUMBLE.h in this dir when we're
# building. # 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@ ALL_CFLAGS=$(X_CFLAGS) $(INCLUDE_CFLAGS) $(X11_INCLUDES) @DEFS@
CC=@CC@ $(ALL_CFLAGS) CC=@CC@ $(ALL_CFLAGS)
@ -97,6 +97,7 @@ libobjs= alist.o \
filesys.o \ filesys.o \
fports.o \ fports.o \
gc.o \ gc.o \
gdbint.o \
genio.o \ genio.o \
gsubr.o \ gsubr.o \
hash.o \ hash.o \
@ -173,6 +174,8 @@ inner_h_files= __scm.h \
filesys.h \ filesys.h \
fports.h \ fports.h \
gc.h \ gc.h \
gdb_interface.h \
gdbint.h \
genio.h \ genio.h \
gsubr.h \ gsubr.h \
hash.h \ hash.h \
@ -246,6 +249,7 @@ c_files= alist.c \
filesys.c \ filesys.c \
fports.c \ fports.c \
gc.c \ gc.c \
gdbint.c \
genio.c \ genio.c \
gsubr.c \ gsubr.c \
hash.c \ hash.c \