diff options
author | David D. Zuhn <zoo@cygnus> | 1992-11-23 01:40:05 +0000 |
---|---|---|
committer | David D. Zuhn <zoo@cygnus> | 1992-11-23 01:40:05 +0000 |
commit | 5ba00487266ffe7de9acb6d88ee0544515dc453b (patch) | |
tree | 079e9bc19b73ed76266391da1d5ce28c555785a0 /build-all.mk | |
parent | 36e0df238474c702adda446d47b752bd826f276f (diff) | |
download | gdb-5ba00487266ffe7de9acb6d88ee0544515dc453b.zip gdb-5ba00487266ffe7de9acb6d88ee0544515dc453b.tar.gz gdb-5ba00487266ffe7de9acb6d88ee0544515dc453b.tar.bz2 |
updates dates, added build-cygnus target
Diffstat (limited to 'build-all.mk')
-rw-r--r-- | build-all.mk | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/build-all.mk b/build-all.mk index b2a0be2..d2818a3 100644 --- a/build-all.mk +++ b/build-all.mk @@ -15,7 +15,7 @@ TREE = devo NATIVE = native -DATE = 921117 +DATE = 921118 TAG = latest-$(DATE) @@ -104,6 +104,23 @@ all-cygnus: done @echo done at `date` +build-cygnus: + @echo build started at `date` + @for i in $(TARGETS) ; do \ + if [ "$$i" = "native" ] ; then \ + if [ ! -f $(canonhost)-3stage-done ] ; then \ + echo "3staging $(canonhost) native" ; \ + $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(host)-stamp-3stage-done $(log) && \ + echo " completed successfully" ; \ + fi \ + else \ + echo "building $(canonhost) cross to $$i" ; \ + $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-cygnus $(tlog) && \ + echo " completed successfully" ; \ + fi ; \ + done + @echo done at `date` + all-native: [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR) rm -f /usr/cygnus/$(TAG) |