diff options
author | Stan Shebs <shebs@codesourcery.com> | 1995-09-29 02:37:17 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1995-09-29 02:37:17 +0000 |
commit | 6144e9a9455bd7b291b964d05764f44558a1a6a2 (patch) | |
tree | bbd8de48de21ddfef9c05c24103cb0782137d299 /gas/mpw-make.sed | |
parent | 7009e4519ea89207aaf1d037ac4b24a262b522c3 (diff) | |
download | gdb-6144e9a9455bd7b291b964d05764f44558a1a6a2.zip gdb-6144e9a9455bd7b291b964d05764f44558a1a6a2.tar.gz gdb-6144e9a9455bd7b291b964d05764f44558a1a6a2.tar.bz2 |
* mpw-config.in: Translate "powerpc" into "ppc", remove gen of
VERSION, move gen of "conf" here from makefile.
* mpw-make.sed: New file, sed commands to translate Unix makefile
into MPW syntax.
* mpw-make.in: Remove.
* mac-as.r: New file, Mac resource file.
* as.h (inline): Don't decide about defining if __MWERKS__,
remove redundant conditional and definition.
* stabs.c (s_stab_generic): Fix syntax for OBJ_PROCESS_STAB.
Diffstat (limited to 'gas/mpw-make.sed')
-rw-r--r-- | gas/mpw-make.sed | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/gas/mpw-make.sed b/gas/mpw-make.sed new file mode 100644 index 0000000..a5f4070 --- /dev/null +++ b/gas/mpw-make.sed @@ -0,0 +1,79 @@ +# Sed commands that finish translating the GAS Unix Makefile to MPW syntax. + +/^# @target_frag@/a\ +\ +HDEFINES = \ +LOCAL_LOADLIBES = \ + +/^srcroot = /s/^/#/ +/^target_alias = /s/^/#/ + +/INCLUDES/s/-i "{srcdir}":\([a-z]*\)/-i "{topsrcdir}"\1/ +/INCLUDES/s/-i "{srcdir}"\.\./-i "{topsrcdir}"/ + +/^INCLUDES = .*$/s/$/ -i "{topsrcdir}"include:mpw: -i ::extra-include:/ + +/$(TARG_CPU_DEP_@target_cpu_type@)/s/$(TARG_CPU_DEP_@target_cpu_type@)/{TARG_CPU_DEP}/ + +/@OPCODES_LIB@/s/@OPCODES_LIB@/::opcodes:libopcodes.o/ +/@BFDLIB@/s/@BFDLIB@/::bfd:libbfd.o/ + +/extra_objects@/s/extra_objects@/{EXTRA_OBJECTS}/ + +/LOADLIBES/s/{LOADLIBES}/{EXTRALIBS}/ + +/@ALL_OBJ_DEPS@/s/@ALL_OBJ_DEPS@/::bfd:bfd.h/ + +# This causes problems - not sure why. +/^tags TAGS/,/etags /d + +/^make-gas.com/s/^/#/ + +/true/s/ ; @true$// + +# Remove references to conf.in, we don't need them. +/conf\.in/s/conf\.in//g + +# Use _gdbinit everywhere instead of .gdbinit. +/gdbinit/s/\.gdbinit/_gdbinit/g + +/atof-targ/s/"{s}"atof-targ\.c/"{o}"atof-targ.c/g +/config/s/"{s}"config\.h/"{o}"config.h/g +/config/s/^config\.h/"{o}"config.h/ +/obj-format/s/"{s}"obj-format\.c/"{o}"obj-format.c/g +/obj-format/s/"{s}"obj-format\.h/"{o}"obj-format.h/g +/targ-cpu/s/"{s}"targ-cpu\.c/"{o}"targ-cpu.c/g +/targ-cpu/s/"{s}"targ-cpu\.h/"{o}"targ-cpu.h/g +/targ-env/s/"{s}"targ-env\.h/"{o}"targ-env.h/g + +/m68k-parse.c/s/"{s}"m68k-parse\.c/"{o}"m68k-parse.c/g +/m68k-parse.c/s/^m68k-parse\.c/"{o}"m68k-parse.c/ + +# Whack out the config.h dependency, it only causes excess rebuilds. +/{OBJS}/s/{OBJS} \\Option-f "{o}"config.h/{OBJS} \\Option-f/ +/gasp.c/s/gasp\.c "{o}"config.h/gasp.c/ + +# The resource file is called mac-as.r. +/as.new.r/s/as\.new\.r/mac-as.r/ +/gasp.new.r/s/gasp\.new\.r/mac-as.r/ + +# ...and the PROG_NAME doesn't have a .new in it. +/PROG_NAME/s/PROG_NAME='"'as.new'"'/PROG_NAME='"'as'"'/ +/PROG_NAME/s/PROG_NAME='"'gasp.new'"'/PROG_NAME='"'gasp'"'/ + +# Whack out recursive makes, they won't work. +/^[ ][ ]*srcroot=/,/^[ ][ ]*(cd /d + +/'#define GAS_VERSION "{VERSION}"'/c\ + Echo -n '#define GAS_VERSION "' >> "{o}"config.new\ + Echo -n "{VERSION}" >> "{o}"config.new\ + Echo -n '"' >> "{o}"config.new + +# Whack out config-rebuilding targets, they won't work. +/^config.status \\Option-f/,/^$/d + +/^"{o}"config.h \\Option-f/s/^/#/ + +# Add a "stamps" target. +$a\ +stamps \\Option-f config-stamp\ |