ab5ad3a4b5
support building it for variant architectures. It was already becoming clear that the former structure was too rigid and didn't scale well. The usual sort of makefile magic arranges to .include an architecture specific makefile "Makefile.${MACHINE_ARCH}" in each directory where it exists. Also, sources will be found in each subdirectory "${MACHINE_ARCH}" that exists. This is all taken care of automatically by the top level "Makefile.inc0". This all seems to work right for the i386 now. I have also converted those alpha pieces already present to the new schema as best I could. Also: change the BINDIR on the i386 to /usr/libexec/elf for "ar" and "ranlib". They are not object format independent enough to put into /usr/bin.
18 lines
377 B
Makefile
18 lines
377 B
Makefile
#
|
|
# $Id: Makefile,v 1.1.1.1 1998/03/01 23:41:13 jdp Exp $
|
|
#
|
|
|
|
.include "../Makefile.inc0"
|
|
|
|
.PATH: ${SRCDIR}/binutils
|
|
|
|
PROG= objcopy
|
|
SRCS= objcopy.c not-strip.c
|
|
CFLAGS+= -I${.CURDIR}/${RELTOP}/libbinutils
|
|
CFLAGS+= -I${SRCDIR}/binutils
|
|
LDADD+= -L${RELTOP}/libbinutils -lbinutils
|
|
LDADD+= -L${RELTOP}/libbfd -lbfd
|
|
LDADD+= -L${RELTOP}/libiberty -liberty
|
|
|
|
.include <bsd.prog.mk>
|