mirror of
https://github.com/opnsense/src.git
synced 2026-03-21 18:30:08 -04:00
achieve on ia64, because we need to generate the ELF64/ia64 code and simply tag elf-fbsd-brand.c at the end of it. This hasn't actually been tested beyond trivial compilation testing. A buildworld has been started and it's time I wait for my changes to loop back to my local repo anyway. I'll get back to this in a couple of hours...
29 lines
778 B
Makefile
29 lines
778 B
Makefile
# $FreeBSD$
|
|
|
|
DEFAULT_VECTOR= bfd_elf64_ia64_little_vec
|
|
|
|
SRCS+= cofflink.c cpu-ia64.c efi-app-ia64.c elf32.c elf32-gen.c elf64.c \
|
|
elf64-gen.c elf64-ia64.c elflink.c
|
|
|
|
VECS+= ${DEFAULT_VECTOR} \
|
|
bfd_efi_app_ia64_vec \
|
|
bfd_elf64_ia64_big_vec \
|
|
bfd_elf64_little_generic_vec bfd_elf64_big_generic_vec \
|
|
bfd_elf32_little_generic_vec bfd_elf32_big_generic_vec
|
|
|
|
.if ${TARGET_ARCH} == "ia64"
|
|
CFLAGS+= -DDEFAULT_VECTOR=${DEFAULT_VECTOR}
|
|
.endif
|
|
|
|
GENSRCS= elf32-target.h elf64-target.h elf64-ia64.c pepigen.c # peigen.c
|
|
SRCS+= ${GENSRCS}
|
|
CLEANFILES+= ${GENSRCS}
|
|
|
|
elf64-ia64.c: elfxx-ia64.c elf-fbsd-brand.c
|
|
cat ${.ALLSRC} | sed -e s/NN/64/g > ${.TARGET}
|
|
|
|
pepigen.c: peXXigen.c
|
|
sed -e s/XX/pep/g ${.ALLSRC} > ${.TARGET}
|
|
|
|
peigen.c: peXXigen.c
|
|
sed -e s/XX/pe/g ${.ALLSRC} > ${.TARGET}
|