diff options
Diffstat (limited to 'contrib/libio/Makefile.in')
-rw-r--r-- | contrib/libio/Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/contrib/libio/Makefile.in b/contrib/libio/Makefile.in index 724372a0b8bf..1d4123b523c3 100644 --- a/contrib/libio/Makefile.in +++ b/contrib/libio/Makefile.in @@ -22,6 +22,7 @@ VERSION = 2.8.0 _G_CONFIG_H=_G_config.h tooldir = $(exec_prefix)/$(target) INSTALLDIR = $(libdir) +gxx_include_dir=${includedir}/g++ IO_OBJECTS = filedoalloc.o floatconv.o genops.o fileops.o \ iovfprintf.o \ @@ -88,9 +89,13 @@ test: test.o libio.a tpipe: tpipe.o libio.a $(CC) $(CFLAGS) -o tpipe tpipe.o libio.a -iostream.list: stamp-picdir $(_G_CONFIG_H) $(LIBIOSTREAM_DEP) +iostream.list: $(_G_CONFIG_H) $(LIBIOSTREAM_DEP) @echo "$(LIBIOSTREAM_USE)"> iostream.list +# The "pic" subdir must be created before we can put any object +# files into it. +$(LIBIOSTREAM_DEP) $(LIBIO_OBJECTS): stamp-picdir + stmp-stdio: @rootme=`pwd`/ ; export rootme; cd stdio ; \ $(MAKE) $(FLAGS_TO_PASS) stdio.list |