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