mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
64b06e7897
Note that a.out is only supported for the non-cross i386 case.
13 lines
240 B
Makefile
13 lines
240 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= crunchide
|
|
SRCS= crunchide.c exec_elf32.c exec_elf64.c
|
|
|
|
TARGET_ARCH?= ${MACHINE_ARCH}
|
|
.if ${TARGET_ARCH} == i386 && ${MACHINE_ARCH} == i386
|
|
SRCS+= exec_aout.c
|
|
.endif
|
|
CFLAGS+=-Darch_${TARGET_ARCH}
|
|
|
|
.include <bsd.prog.mk>
|