c0166228ff
not active yet, just a work-in-progress.
17 lines
254 B
Makefile
17 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>
|