Merge branch 'master' of /home/www-data/gitweb/dragonfly
[dragonfly.git] / usr.bin / 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 # $DragonFly: src/usr.sbin/crunch/crunchide/Makefile,v 1.2 2003/06/17 04:29:53 dillon Exp $
3
4 PROG=   crunchide
5 SRCS=   crunchide.c exec_elf32.c exec_elf64.c
6
7 TARGET_ARCH?=   ${MACHINE_ARCH}
8 .if ${TARGET_ARCH} == i386 && ${MACHINE_ARCH} == i386
9 SRCS+=  exec_aout.c
10 .endif
11 CFLAGS+=-Darch_${TARGET_ARCH}
12
13 .include <bsd.prog.mk>