diff options
author | David D. Zuhn <zoo@cygnus> | 1992-11-30 09:15:40 +0000 |
---|---|---|
committer | David D. Zuhn <zoo@cygnus> | 1992-11-30 09:15:40 +0000 |
commit | c676f606d2a03f2f5f4ccee5fcfacb24613a46e8 (patch) | |
tree | 83d3c46fbabe6cad69beba057646b544af749cc4 /build-all.mk | |
parent | 94daba7f7759999cb24817510d75a015f1db0824 (diff) | |
download | gdb-c676f606d2a03f2f5f4ccee5fcfacb24613a46e8.zip gdb-c676f606d2a03f2f5f4ccee5fcfacb24613a46e8.tar.gz gdb-c676f606d2a03f2f5f4ccee5fcfacb24613a46e8.tar.bz2 |
* Makefile.in: define flags for X11 include files and library file
locations, pass them down to the programs that need this info
* build-all.mk: added a 'native' target, to 3stage the native toolchain
(also updated dates in test-build.mk and build-all.mk)
Diffstat (limited to 'build-all.mk')
-rw-r--r-- | build-all.mk | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/build-all.mk b/build-all.mk index 28fa8b6..8e1ccca 100644 --- a/build-all.mk +++ b/build-all.mk @@ -15,7 +15,7 @@ TREE = devo NATIVE = native -DATE = 921119 +DATE = 921127 TAG = latest-$(DATE) @@ -104,6 +104,14 @@ all-cygnus: done @echo done at `date` +native: + @echo build started at `date` + [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR) + rm -f /usr/cygnus/$(TAG) + ln -s $(INSTALLDIR) /usr/cygnus/$(TAG) + $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(host)-stamp-3stage-done $(log) + @echo done at `date` + build-cygnus: @echo build started at `date` @for i in $(TARGETS) ; do \ |