mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
16 lines
254 B
Makefile
16 lines
254 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= objformat
|
|
NOMAN= not yet
|
|
CFLAGS+= -DMAIN
|
|
|
|
.if ${BINFORMAT} == elf
|
|
CFLAGS+= -DFREEBSD_ELF
|
|
.else
|
|
CFLAGS+= -DFREEBSD_AOUT
|
|
.endif
|
|
|
|
# LINKS+= /usr/bin/objformat /usr/bin/as
|
|
# LINKS+= /usr/bin/objformat /usr/bin/ld
|
|
|
|
.include <bsd.prog.mk>
|