aboutsummaryrefslogtreecommitdiff
path: root/build-all.mk
diff options
context:
space:
mode:
authorDavid D. Zuhn <zoo@cygnus>1993-02-13 10:32:24 +0000
committerDavid D. Zuhn <zoo@cygnus>1993-02-13 10:32:24 +0000
commite37dbf930d1cec38fe8b786beb04a0ff526ead8f (patch)
treeb8daf52849893fc2ea7b16bb49ae7a33b75f1eb7 /build-all.mk
parent7c8592905d676728f8b21b694190a115f89e3e53 (diff)
downloadgdb-e37dbf930d1cec38fe8b786beb04a0ff526ead8f.zip
gdb-e37dbf930d1cec38fe8b786beb04a0ff526ead8f.tar.gz
gdb-e37dbf930d1cec38fe8b786beb04a0ff526ead8f.tar.bz2
fix TMPDIR on hp300 automagically, don't have all sorts of -g -g -g flags around
Diffstat (limited to 'build-all.mk')
-rw-r--r--build-all.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/build-all.mk b/build-all.mk
index d7e013b..2310e18 100644
--- a/build-all.mk
+++ b/build-all.mk
@@ -21,7 +21,7 @@ TAG = latest-$(DATE)
INSTALLDIR = /bang/installed-progressive/$(TAG)
-GCC = gcc -O -g
+GCC = gcc -O
CFLAGS = -g
log = 1>$(canonhost)-build-log 2>&1
@@ -42,7 +42,7 @@ endif
ifeq ($(canonhost),m68k-sun-sunos4.1.1)
TARGETS = $(NATIVE) m68k-vxworks m68k-aout i386-aout
-GCC = gcc -O -g -msoft-float
+GCC = gcc -O -msoft-float
CC = cc -J
all: all-cygnus
endif
@@ -72,7 +72,9 @@ endif
ifeq ($(canonhost),m68k-hp-hpux)
TARGETS = m68k-vxworks
+TMPDIR := $(shell mkdir $(canonhost)-tmpdir; cd $(canonhost)-tmpdir ; pwd)
CC = cc +O1000 -Wp,-P
+CFLAGS =
all: all-native
endif