]> gcc.gnu.org Git - gcc.git/commitdiff
Make-lang.in (ada/treeprs.ads, [...]): Use unique subdirectories of ada/bldtools...
authorJakub Jelinek <jakub@redhat.com>
Tue, 15 Mar 2005 20:51:17 +0000 (21:51 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 15 Mar 2005 20:51:17 +0000 (21:51 +0100)
* ada/Make-lang.in (ada/treeprs.ads, ada/einfo.h, ada/sinfo.h,
ada/nmake.adb, ada/nmake.ads): Use unique subdirectories of
ada/bldtools to avoid make -jN failures.

From-SVN: r96531

gcc/ada/ChangeLog
gcc/ada/Make-lang.in

index 7d2eba4c778dd644dd6f95685741f97e76f99030..e18260b543ecc2d3f8df33689dc5758693433a0c 100644 (file)
@@ -1,3 +1,9 @@
+2005-03-15  Jakub Jelinek  <jakub@redhat.com>
+
+       * Make-lang.in (ada/treeprs.ads, ada/einfo.h, ada/sinfo.h,
+       ada/nmake.adb, ada/nmake.ads): Use unique subdirectories of
+       ada/bldtools to avoid make -jN failures.
+
 2005-03-15  Eric Botcazou  <ebotcazou@adacore.com>
 
        * trans.c (gnat_to_gnu) <N_Return_Statement>: Set gnu_result
index 36ea71882dd1057027589cc09565c93e3bd59fb2..23b6a45d9b9e184d9510f3c0c3ab409aa2e22545 100644 (file)
@@ -880,29 +880,29 @@ ada/b_gnatb.c : $(GNATBIND_OBJS) ada/gnatbind.o ada/interfac.o
 ada/b_gnatb.o : ada/b_gnatb.c
 
 ada/treeprs.ads : ada/treeprs.adt ada/sinfo.ads ada/xtreeprs.adb
-       -$(MKDIR) ada/bldtools
-       $(CP) $^ ada/bldtools
-       (cd ada/bldtools; gnatmake -q xtreeprs ; ./xtreeprs ../treeprs.ads )
+       -$(MKDIR) ada/bldtools/treeprs
+       $(CP) $^ ada/bldtools/treeprs
+       (cd ada/bldtools/treeprs; gnatmake -q xtreeprs ; ./xtreeprs ../../treeprs.ads )
 
 ada/einfo.h : ada/einfo.ads ada/einfo.adb ada/xeinfo.adb
-       -$(MKDIR) ada/bldtools
-       $(CP) $^ ada/bldtools
-       (cd ada/bldtools; gnatmake -q xeinfo ; ./xeinfo ../einfo.h )
+       -$(MKDIR) ada/bldtools/einfo
+       $(CP) $^ ada/bldtools/einfo
+       (cd ada/bldtools/einfo; gnatmake -q xeinfo ; ./xeinfo ../../einfo.h )
 
 ada/sinfo.h : ada/sinfo.ads ada/xsinfo.adb
-       -$(MKDIR) ada/bldtools
-       $(CP) $^ ada/bldtools
-       (cd ada/bldtools; gnatmake -q xsinfo ; ./xsinfo ../sinfo.h )
+       -$(MKDIR) ada/bldtools/sinfo
+       $(CP) $^ ada/bldtools/sinfo
+       (cd ada/bldtools/sinfo; gnatmake -q xsinfo ; ./xsinfo ../../sinfo.h )
 
 ada/nmake.adb : ada/sinfo.ads ada/nmake.adt ada/xnmake.adb
-       -$(MKDIR) ada/bldtools
-       $(CP) $^ ada/bldtools
-       (cd ada/bldtools; gnatmake -q xnmake ; ./xnmake -b ../nmake.adb )
+       -$(MKDIR) ada/bldtools/nmake_b
+       $(CP) $^ ada/bldtools/nmake_b
+       (cd ada/bldtools/nmake_b; gnatmake -q xnmake ; ./xnmake -b ../../nmake.adb )
 
 ada/nmake.ads :  ada/sinfo.ads ada/nmake.adt ada/xnmake.adb ada/nmake.adb
-       -$(MKDIR) ada/bldtools
-       $(CP) $^ ada/bldtools
-       (cd ada/bldtools; gnatmake -q xnmake ; ./xnmake -s ../nmake.ads )
+       -$(MKDIR) ada/bldtools/nmake_s
+       $(CP) $^ ada/bldtools/nmake_s
+       (cd ada/bldtools/nmake_s; gnatmake -q xnmake ; ./xnmake -s ../../nmake.ads )
 
 update-sources : ada/treeprs.ads ada/einfo.h ada/sinfo.h ada/nmake.adb \
        ada/nmake.ads
This page took 0.087569 seconds and 5 git commands to generate.