diff options
author | David D. Zuhn <zoo@cygnus> | 1993-07-24 00:03:21 +0000 |
---|---|---|
committer | David D. Zuhn <zoo@cygnus> | 1993-07-24 00:03:21 +0000 |
commit | f74859e42fe79874c49fa606d5d4301c49532756 (patch) | |
tree | 0478996fcbd9f6e8e7a5b7e6ceb3dd380304dec0 /build-all.mk | |
parent | 4015bfb977dd5ade9a236e7e0584b7a8cb198031 (diff) | |
download | binutils-gdb-f74859e42fe79874c49fa606d5d4301c49532756.tar.gz |
different logging
Diffstat (limited to 'build-all.mk')
-rw-r--r-- | build-all.mk | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/build-all.mk b/build-all.mk index f9682e91b05..dd6acd3942d 100644 --- a/build-all.mk +++ b/build-all.mk @@ -24,7 +24,8 @@ CXXFLAGS = -g -O MAKEINFOFLAGS = log = 1>$(canonhost)-build-log 2>&1 -tlog = 1> $(canonhost)-x-$$i-build-log 2>&1 +cyglog = 1> $(canonhost)-x-$$i-cygnus-build-log 2>&1 +natlog = 1> $(canonhost)-x-$$i-native-build-log 2>&1 canonhost := $(shell $(TREE)/config.sub $(host)) @@ -216,7 +217,7 @@ all-cygnus: fi \ else \ echo "building $(canonhost) cross to $$i" ; \ - $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i do-cygnus $(tlog) && \ + $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i do-cygnus $(cyglog) && \ echo " completed successfully" ; \ fi ; \ done @@ -241,7 +242,7 @@ build-cygnus: fi \ else \ echo "building $(canonhost) cross to $$i:" `date` ; \ - $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-cygnus $(tlog) && \ + $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-cygnus $(cyglog) && \ echo " completed successfully" ; \ fi ; \ done @@ -253,7 +254,7 @@ all-native: ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG) @for i in $(TARGETS) ; do \ echo "building $(canonhost) cross to $$i" ; \ - $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i do-native $(tlog) && \ + $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i do-native $(natlog) && \ echo " completed successfully" ; \ done @@ -263,7 +264,7 @@ all-cross: ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG) @for i in $(TARGETS) ; do \ echo "building $(canonhost) cross to $$i" ; \ - $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build=$(build) do-cygnus $(tlog) && \ + $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build=$(build) do-cygnus $(cyglog) && \ echo " completed successfully" ; \ done @@ -275,7 +276,7 @@ config: echo " completed successfully" ; \ else \ echo "config $(canonhost) cross to $$i" ; \ - $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i do-native-config $(tlog) && \ + $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i do-native-config $(cyglog) && \ echo " completed successfully" ; \ fi ; \ done @@ -288,7 +289,7 @@ build: echo " completed successfully" ; \ else \ echo "building $(canonhost) cross to $$i" ; \ - $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-native $(tlog) && \ + $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-native $(cyglog) && \ echo " completed successfully" ; \ fi ; \ done @@ -302,7 +303,7 @@ build: echo " completed successfully" ; \ else \ echo "building $(canonhost) cross to $$i" ; \ - $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-cygnus $(tlog) && \ + $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-cygnus $(cyglog) && \ echo " completed successfully" ; \ fi ; \ done |