find include files

This commit is contained in:
K. Richard Pixley 1991-11-05 00:06:29 +00:00
parent abefb1f107
commit 40773f7f3f
2 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ RANLIB = ranlib
AR = ar
AR_FLAGS = clq
INCDIR = $(srcdir)/../include
CSEARCH = -I. -I$(INCDIR)
CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
DEP = mkdep

View File

@ -55,7 +55,7 @@ OBJDUMP_PROG=objdump
PROGS = $(SIZE_PROG) $(COPY_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRIP_PROG) $(RANLIB_PROG)
STAGESTUFF = $(PROGS) *.o
BASEDIR = $(unsubdir)/..
BASEDIR = $(srcdir)/..
LIBDIR = $(unsubdir)/../bfd$(subdir)
#### host and target dependant Makefile fragments come in here.
@ -63,7 +63,7 @@ LIBDIR = $(unsubdir)/../bfd$(subdir)
INCDIR = $(BASEDIR)/include
CFLAGS = -g -I. -I$(INCDIR) $(HDEFINES) $(TDEFINES)
CFLAGS = -g -I. -I$(srcdir) -I$(INCDIR) $(HDEFINES) $(TDEFINES)
# When adding .o files, to make VPATH work in Sun Make, you have to
# also add a foo.o: foo.c line at the bottom of the file.