2b30bcbb41
was released in a.out form, it does define the a.out data structures. The ia64 port does not.
11 lines
154 B
Makefile
11 lines
154 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= crunchide
|
|
SRCS= crunchide.c exec_elf32.c exec_elf64.c
|
|
|
|
.if ${MACHINE_ARCH} == i386
|
|
SRCS+= exec_aout.c
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|