diff options
author | Ken Raeburn <raeburn@cygnus> | 1994-04-14 22:46:53 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1994-04-14 22:46:53 +0000 |
commit | c92d9ee9006288589f4466496632ee20f431a985 (patch) | |
tree | a13884ca04f3edfc1d077bcfaa98d044212a763d /gas/config-gas.com | |
parent | d6f98c552b15e430f2a7e2fe38b111afa13a4dcf (diff) | |
download | gdb-c92d9ee9006288589f4466496632ee20f431a985.zip gdb-c92d9ee9006288589f4466496632ee20f431a985.tar.gz gdb-c92d9ee9006288589f4466496632ee20f431a985.tar.bz2 |
* Makefile.in: Make $(OBJS) depend on $(ALL_OBJ_DEPS).
* configure.in: Set ALL_OBJ_DEPS in output Makefile.
Based on suggestions from <BAILEY@hmivax.humgen.upenn.edu> (Charles Bailey):
* vmsconf.sh: In generated file, get ".obj" suffix right, build source files
from other directories into objects in the current directory, and specify PSECT
attributes explicitly to linker. Also added missing label.
* Makefile.in (stamp-mk.com): Reference new variable VMS_OTHER_OBJS for list of
non-local object files, instead of listing them here.
(VMS_OTHER_OBJS): New variable, added more libiberty files.
* make-gas.com: Regenerated.
* config/ho-vms.h (unlink): Define as delete.
* config-gas.com: Fix quoting on TARGET_CANONICAL definition. Delete files
before creating them.
Diffstat (limited to 'gas/config-gas.com')
-rw-r--r-- | gas/config-gas.com | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gas/config-gas.com b/gas/config-gas.com index 06bba35..7ad1a0a 100644 --- a/gas/config-gas.com +++ b/gas/config-gas.com @@ -41,14 +41,16 @@ $line=f$extract(ijk,f$length(line)-ijk,line) $ijk=f$locate("\n",line) $line=f$extract(0,ijk,line) $! +$ if f$search("version.opt").nes."" then delete/noconfirm version.opt;* $open ifile$ version.opt/write $write ifile$ "ident="+""""+line+"""" $close ifile$ $! Now write config.h. +$ if f$search("config.h").nes."" then delete/noconfirm config.h;* $open ifile$ config.h/write $write ifile$ "#define TARGET_CPU """,cpu_type,""" $write ifile$ "#define TARGET_ALIAS ""vms""" -$write ifile$ "#define TARGET_CANONICAL ""vax-dec-vms"""" +$write ifile$ "#define TARGET_CANONICAL ""vax-dec-vms""" $write ifile$ "#define GAS_VERSION """,line,"""" $close ifile$ $! |