Commit e2d6b9b9 by Jakub Jelinek Committed by Jakub Jelinek

Make-lang.in (ada/treeprs.ads, [...]): Use unique subdirectories of ada/bldtools…

Make-lang.in (ada/treeprs.ads, [...]): Use unique subdirectories of ada/bldtools to avoid make -jN failures.

	* 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
parent c064fde5
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> 2005-03-15 Eric Botcazou <ebotcazou@adacore.com>
* trans.c (gnat_to_gnu) <N_Return_Statement>: Set gnu_result * trans.c (gnat_to_gnu) <N_Return_Statement>: Set gnu_result
......
...@@ -880,29 +880,29 @@ ada/b_gnatb.c : $(GNATBIND_OBJS) ada/gnatbind.o ada/interfac.o ...@@ -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/b_gnatb.o : ada/b_gnatb.c
ada/treeprs.ads : ada/treeprs.adt ada/sinfo.ads ada/xtreeprs.adb ada/treeprs.ads : ada/treeprs.adt ada/sinfo.ads ada/xtreeprs.adb
-$(MKDIR) ada/bldtools -$(MKDIR) ada/bldtools/treeprs
$(CP) $^ ada/bldtools $(CP) $^ ada/bldtools/treeprs
(cd ada/bldtools; gnatmake -q xtreeprs ; ./xtreeprs ../treeprs.ads ) (cd ada/bldtools/treeprs; gnatmake -q xtreeprs ; ./xtreeprs ../../treeprs.ads )
ada/einfo.h : ada/einfo.ads ada/einfo.adb ada/xeinfo.adb ada/einfo.h : ada/einfo.ads ada/einfo.adb ada/xeinfo.adb
-$(MKDIR) ada/bldtools -$(MKDIR) ada/bldtools/einfo
$(CP) $^ ada/bldtools $(CP) $^ ada/bldtools/einfo
(cd ada/bldtools; gnatmake -q xeinfo ; ./xeinfo ../einfo.h ) (cd ada/bldtools/einfo; gnatmake -q xeinfo ; ./xeinfo ../../einfo.h )
ada/sinfo.h : ada/sinfo.ads ada/xsinfo.adb ada/sinfo.h : ada/sinfo.ads ada/xsinfo.adb
-$(MKDIR) ada/bldtools -$(MKDIR) ada/bldtools/sinfo
$(CP) $^ ada/bldtools $(CP) $^ ada/bldtools/sinfo
(cd ada/bldtools; gnatmake -q xsinfo ; ./xsinfo ../sinfo.h ) (cd ada/bldtools/sinfo; gnatmake -q xsinfo ; ./xsinfo ../../sinfo.h )
ada/nmake.adb : ada/sinfo.ads ada/nmake.adt ada/xnmake.adb ada/nmake.adb : ada/sinfo.ads ada/nmake.adt ada/xnmake.adb
-$(MKDIR) ada/bldtools -$(MKDIR) ada/bldtools/nmake_b
$(CP) $^ ada/bldtools $(CP) $^ ada/bldtools/nmake_b
(cd ada/bldtools; gnatmake -q xnmake ; ./xnmake -b ../nmake.adb ) (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 ada/nmake.ads : ada/sinfo.ads ada/nmake.adt ada/xnmake.adb ada/nmake.adb
-$(MKDIR) ada/bldtools -$(MKDIR) ada/bldtools/nmake_s
$(CP) $^ ada/bldtools $(CP) $^ ada/bldtools/nmake_s
(cd ada/bldtools; gnatmake -q xnmake ; ./xnmake -s ../nmake.ads ) (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 \ update-sources : ada/treeprs.ads ada/einfo.h ada/sinfo.h ada/nmake.adb \
ada/nmake.ads ada/nmake.ads
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment