mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-08 06:39:21 -04:00
60 lines
1.4 KiB
Makefile
60 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.2 2011/10/02 18:16:06 christos Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
.include "../Makefile.inc"
|
|
|
|
LIBISPRIVATE= yes
|
|
|
|
LIB= bfd
|
|
|
|
.include "${.CURDIR}/arch/${MACHINE_ARCH}/defs.mk"
|
|
|
|
GCPPFLAGS= ${G_archdefs} ${G_DEFS} ${G_INCLUDES} ${G_TDEFAULTS}
|
|
CPPFLAGS+= -I${.CURDIR}/arch/${MACHINE_ARCH} -I${DIST}/include -I. \
|
|
-I${DIST}/bfd ${GCPPFLAGS:M-D*} ${GCPPFLAGS:M-I*:N-I.*} \
|
|
-DDEBUGDIR=\"${DESTDIR}/usr/libdata/debug\"
|
|
|
|
GSRCS= ${G_libbfd_la_OBJECTS:libbfd.lo=lib_bfd.lo} \
|
|
${G_libbfd_la_DEPENDENCIES:M*.lo}
|
|
SRCS= ${GSRCS:.lo=.c}
|
|
|
|
DPSRCS+= elf32-target.h elf64-target.h targmatch.h \
|
|
elf32-ia64.c elf64-ia64.c
|
|
CLEANFILES+= elf32-target.h elf64-target.h targmatch.h \
|
|
elf32-ia64.c elf64-ia64.c
|
|
|
|
.PATH: ${DIST}/bfd
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
${OBJS} ${SOBJS}: elf32-target.h elf64-target.h
|
|
targets.o targets.pico: targmatch.h Makefile
|
|
|
|
targmatch.h: config.bfd targmatch.sed
|
|
${_MKTARGET_CREATE}
|
|
${TOOL_SED} -f ${.ALLSRC:M*.sed} ${.ALLSRC:M*.bfd} >$@
|
|
|
|
elf32-target.h: elfxx-target.h
|
|
${_MKTARGET_CREATE}
|
|
${TOOL_SED} -e s/NN/32/g < $> > $@
|
|
|
|
elf64-target.h: elfxx-target.h
|
|
${_MKTARGET_CREATE}
|
|
${TOOL_SED} -e s/NN/64/g < $> > $@
|
|
|
|
elf32-ia64.c: elfxx-ia64.c
|
|
${_MKTARGET_CREATE}
|
|
${TOOL_SED} -e s/NN/32/g < $> > $@
|
|
|
|
elf64-ia64.c: elfxx-ia64.c
|
|
${_MKTARGET_CREATE}
|
|
${TOOL_SED} -e s/NN/64/g < $> > $@
|
|
|
|
peigen.c: peXXigen.c
|
|
${_MKTARGET_CREATE}
|
|
${TOOL_SED} -e s/XX/pe/g < $> > $@
|
|
|
|
pex64igen.c: peXXigen.c
|
|
${_MKTARGET_CREATE}
|
|
${TOOL_SED} -e s/XX/pex64/g < $> > $@
|