1# $FreeBSD$ 2 3PROG= crunchide 4SRCS= crunchide.c exec_elf32.c exec_elf64.c 5 6TARGET_ARCH?= ${MACHINE_ARCH} 7.if ${TARGET_ARCH} == i386 && ${MACHINE_ARCH} == i386 8SRCS+= exec_aout.c 9.endif 10CFLAGS+=-Darch_${TARGET_ARCH} 11 12.include <bsd.prog.mk> 13