Initial import from FreeBSD RELENG_4:
[dragonfly.git] / usr.sbin / crunch / crunchide / Makefile
1 # $FreeBSD: src/usr.sbin/crunch/crunchide/Makefile,v 1.2.6.1 2002/07/25 09:33:17 ru Exp $
2
3 PROG=   crunchide
4 SRCS=   crunchide.c exec_elf32.c exec_elf64.c
5
6 TARGET_ARCH?=   ${MACHINE_ARCH}
7 .if ${TARGET_ARCH} == i386 && ${MACHINE_ARCH} == i386
8 SRCS+=  exec_aout.c
9 .endif
10 CFLAGS+=-Darch_${TARGET_ARCH}
11
12 .include <bsd.prog.mk>