Skip to content

Commit

Permalink
* src/Makefile.am (INCLUDES): New target file, with all -I flags.
Browse files Browse the repository at this point in the history
* src/Makefile.in: Regenerate.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35700 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
aoliva committed Aug 15, 2000
1 parent 1d5f016 commit 2d655f5
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
5 changes: 5 additions & 0 deletions libstdc++-v3/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2000-08-15 Alexandre Oliva <aoliva@redhat.com>

* src/Makefile.am (INCLUDES): New target file, with all -I flags.
* src/Makefile.in: Regenerate.

2000-08-14 Benjamin Kosnik <bkoz@purist.soma.redhat.com>

C/C++ io merge/sync.
Expand Down
13 changes: 12 additions & 1 deletion libstdc++-v3/src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
## Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
## USA.

## $Id$
## $Id: Makefile.am,v 1.25 2000/07/26 21:30:45 pme Exp $

AUTOMAKE_OPTIONS = 1.3 gnits
MAINT_CHARSET = latin1
Expand Down Expand Up @@ -314,3 +314,14 @@ wstring-inst.o: string-inst.cc
wstring-inst.lo: string-inst.cc
$(LTCXXCOMPILE) -fimplicit-templates -c -DC=wchar_t $< -o $@

all: INCLUDES
INCLUDES: Makefile
$(MAKE) \
top_builddir=`CDPATH=:. && cd $(top_builddir) && pwd` \
top_srcdir=`CDPATH=:. && cd $(top_srcdir) && pwd` \
tmp-INCLUDES
-rm -f INCLUDES
mv tmp-INCLUDES INCLUDES

tmp-INCLUDES: Makefile
echo -I$(top_builddir) $(INCLUDES) > $@
12 changes: 12 additions & 0 deletions libstdc++-v3/src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,18 @@ wstring-inst.o: string-inst.cc
wstring-inst.lo: string-inst.cc
$(LTCXXCOMPILE) -fimplicit-templates -c -DC=wchar_t $< -o $@

all: INCLUDES
INCLUDES: Makefile
$(MAKE) \
top_builddir=`CDPATH=:. && cd $(top_builddir) && pwd` \
top_srcdir=`CDPATH=:. && cd $(top_srcdir) && pwd` \
tmp-INCLUDES
-rm -f INCLUDES
mv tmp-INCLUDES INCLUDES

tmp-INCLUDES: Makefile
echo -I$(top_builddir) $(INCLUDES) > $@

# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

0 comments on commit 2d655f5

Please sign in to comment.