f649d525ed
Add support for openVMS/Alpha. * as.h (PRINTF_LIKE): Don't define if VMS, for now. * config/obj-evax.c: New file. * config/obj-evax.h: New file. * config/tc-alpha.c: Add support for EVAX format if OBJ_EVAX is defined. * config/tc-alpha.h: Add support for EVAX format if OBJ_EVAX is defined. Add case for bfd_target_evax_flavour. * config/vms-a-conf.h: New file. * conf-a-gas.com: New file. * configure.in: Add target alpha-*-*vms*. * configure: Rebuild. * makefile.vms: New file. * read.c (s_lcomm): Align bss_seg on 8 byte boundary if OBJ_EVAX. Don't call ffs on openVMS/Alpha.
55 lines
1.6 KiB
Plaintext
55 lines
1.6 KiB
Plaintext
#
|
|
# makefile for gas
|
|
#
|
|
# Created by Klaus Kämpf, kkaempf@progis.de
|
|
#
|
|
|
|
CC=gcc
|
|
|
|
ifeq ($(CC),gcc)
|
|
DEFS=
|
|
CFLAGS=/include=([],[-.bfd],[.config],[-.include],[-])$(DEFS)
|
|
LFLAGS=
|
|
LIBS=,GNU_CC:[000000]LIBGCC2/lib,GNU_CC:[000000]LIBGCCLIB/lib,\
|
|
sys$$library:vaxcrtl.olb/lib,GNU_CC:[000000]crt0.obj
|
|
else
|
|
DEFS=/define=("table_size_of_flonum_powers_of_ten"="tabsiz_flonum_powers_of_ten",\
|
|
"_bfd_generic_get_section_contents_in_window"="_bfd_generic_get_win_section_cont",\
|
|
"_elf_section_from_bfd_section"="_bfd_elf_sec_from_bfd_sec","const=")
|
|
CFLAGS=/noopt/debug/include=([],[-.bfd],[.config],[-.include],[-])$(DEFS)
|
|
LFLAGS=
|
|
LIBS=
|
|
endif
|
|
|
|
OBJS=targ-cpu.obj,obj-format.obj,atof-targ.obj,app.obj,as.obj,atof-generic.obj,\
|
|
bignum-copy.obj,cond.obj,expr.obj,flonum-konst.obj,flonum-copy.obj,\
|
|
flonum-mult.obj,frags.obj,hash.obj,input-file.obj,input-scrub.obj,\
|
|
literal.obj,messages.obj,output-file.obj,read.obj,subsegs.obj,symbols.obj,\
|
|
write.obj,listing.obj,ecoff.obj,stabs.obj,sb.obj,macro.obj
|
|
|
|
LIBIBERTY = [-.libiberty]libiberty.olb
|
|
LIBBFD = [-.bfd]libbfd.olb
|
|
LIBOPCODES = [-.opcodes]libopcodes.olb
|
|
|
|
|
|
as.exe: $(OBJS) $(LIBOPCODES) $(LIBBFD) $(LIBIBERTY)
|
|
link$(LFLAGS)/exe=$@ $(OBJS),$(LIBOPCODES)/lib,$(LIBBFD)/lib,$(LIBIBERTY)/lib$(LIBS)
|
|
|
|
gasp.exe: gasp.obj $(LIBBFD) $(LIBIBERTY)
|
|
link$(LFLAGS)/exe=$@ gasp.obj,$(LIBBFD)/lib,$(LIBIBERTY)/lib$(LIBS)
|
|
|
|
targ-cpu.c: [.config]tc-alpha.c
|
|
copy $< $@
|
|
targ-cpu.h: [.config]tc-alpha.h
|
|
copy $< $@
|
|
targ-env.h: [.config]te-generic.h
|
|
copy $< $@
|
|
obj-format.h: [.config]obj-evax.h
|
|
copy $< $@
|
|
obj-format.c: [.config]obj-evax.c
|
|
copy $< $@
|
|
atof-targ.c: [.config]atof-ieee.c
|
|
copy $< $@
|
|
|
|
targ-cpu.obj: targ-cpu.c targ-cpu.h [.config]atof-vax.c
|