summaryrefslogtreecommitdiffstats
path: root/usr.sbin/crunch/crunchide/Makefile
blob: 406aba2619510ab532cf9a73d9cf4f63df6121f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $FreeBSD$

PROG=   crunchide
SRCS=	crunchide.c

TARGET_ARCH?=	${MACHINE_ARCH}

.if ${TARGET_ARCH} == ia64 || ${TARGET_ARCH} == powerpc64 || \
    ${TARGET_ARCH} == sparc64 || ${TARGET_ARCH} == amd64 || \
    ${TARGET_ARCH:Mmips64*}
CFLAGS+=-DNLIST_ELF64
SRCS+=	exec_elf64.c
exec_elf64.o: exec_elf32.c
.else
CFLAGS+=-DNLIST_ELF32
SRCS+=	exec_elf32.c
.endif

.include <bsd.prog.mk>
OpenPOWER on IntegriCloud