diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-12-07 10:33:36 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-12-07 10:33:36 +0000 |
commit | 1a82cad7c5da0485c3f68231c34014ea6e4daaaf (patch) | |
tree | 239c153be4763236f69cadc0980e0105e1b9523c /libstdc++/Makefile.in | |
parent | d509e46d9f23c4257954d2a64dee613af4e44871 (diff) | |
download | gcc-1a82cad7c5da0485c3f68231c34014ea6e4daaaf.tar.gz |
* iosfwd: New header.
* Makefile.in (HEADERS): Add it.
Sun Dec 7 02:32:20 1997 Gregory L. Galloway (gregg@eoeml.gtri.gatech.edu)
* Makefile.in (HEADERS): Modified list of headers to
install to include all of SGI STL headers especially hash_set and
hash_map, and added ANSI C++ style wrappers for fstream, iomanip,
iostream, and strstream.
* fstream, iomanip, iostream, strstream: New forwarding headers
added.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@16991 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++/Makefile.in')
-rw-r--r-- | libstdc++/Makefile.in | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/libstdc++/Makefile.in b/libstdc++/Makefile.in index 298917860cd..dd06b9662aa 100644 --- a/libstdc++/Makefile.in +++ b/libstdc++/Makefile.in @@ -23,8 +23,9 @@ SUBLIBS = $(STAMP)-string $(STAMP)-complx HEADERS= cassert cctype cerrno cfloat ciso646 climits clocale cmath complex \ csetjmp csignal cstdarg cstddef cstdio cstdlib cstring ctime \ cwchar cwctype string stdexcept \ - algorithm deque list map queue set stack vector utility functional \ - iterator memory numeric + algorithm deque functional hash_map hash_set iterator list map \ + memory numeric pthread_alloc queue rope set slist stack utility \ + vector fstream iomanip iostream strstream iosfwd ARLIB = libstdc++.a SHLIB = libstdc++.so.$(VERSION) @@ -303,16 +304,13 @@ stuff: $(MAKE) -C ../libg++ clean -$(MAKE) $(MAKEFLAGS) check -$(MAKE) -C ../libio check - -$(MAKE) -C ../libg++ check - -$(MAKE) -C ../gcc check-g++ + -$(MAKE) -C ../../gcc check-g++ stuff1: $(MAKE) clean $(MAKE) -C ../libio c++clean - $(MAKE) -C ../libg++ clean stuff2: -$(MAKE) check -$(MAKE) -C ../libio check - -$(MAKE) -C ../libg++ check - -$(MAKE) -C ../gcc check-g++ + -$(MAKE) -C ../../gcc check-g++ |