diff --git a/gnu/usr.bin/binutils/as/Makefile b/gnu/usr.bin/binutils/as/Makefile index 3974187ac1db..10c1911ca4d5 100644 --- a/gnu/usr.bin/binutils/as/Makefile +++ b/gnu/usr.bin/binutils/as/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.1.1.1 1998/03/01 23:40:59 jdp Exp $ +# $Id: Makefile,v 1.1 1998/03/12 02:54:57 jdp Exp $ # .include "../Makefile.inc0" @@ -8,12 +8,12 @@ PROG= as MAN1= doc/as.1 -SRCS= app.c as.c atof-generic.c atof-ieee.c bignum-copy.c \ +SRCS+= app.c as.c atof-generic.c atof-ieee.c bignum-copy.c \ cond.c ecoff.c expr.c flonum-copy.c flonum-konst.c \ flonum-mult.c frags.c hash.c input-file.c \ input-scrub.c listing.c literal.c macro.c messages.c \ obj-elf.c output-file.c read.c sb.c stabs.c \ - subsegs.c symbols.c tc-i386.c write.c + subsegs.c symbols.c write.c CFLAGS+= -I${SRCDIR}/gas CFLAGS+= -I${SRCDIR}/gas/config CFLAGS+= -I${SRCDIR} diff --git a/gnu/usr.bin/binutils/as/Makefile.alpha b/gnu/usr.bin/binutils/as/Makefile.alpha new file mode 100644 index 000000000000..f322632e30f9 --- /dev/null +++ b/gnu/usr.bin/binutils/as/Makefile.alpha @@ -0,0 +1,7 @@ +# +# $Id: Makefile.i386,v 1.1 1998/03/12 02:54:57 jdp Exp $ +# + +BINDIR= /usr/bin +SRCS+= tc-alpha.c +LDADD+= -L${RELTOP}/libopcodes -lopcodes diff --git a/gnu/usr.bin/binutils/as/Makefile.i386 b/gnu/usr.bin/binutils/as/Makefile.i386 index a23f65695926..d5c3774e418d 100644 --- a/gnu/usr.bin/binutils/as/Makefile.i386 +++ b/gnu/usr.bin/binutils/as/Makefile.i386 @@ -1,5 +1,6 @@ # -# $Id$ +# $Id: Makefile.i386,v 1.1 1998/03/12 02:54:57 jdp Exp $ # BINDIR= /usr/libexec/elf +SRCS+= tc-i386.c