freebsd-dev/usr.bin/objformat/Makefile
John Polstra eca7742c3c Link objformat statically by default. This makes it possible to
build 2.2-stable worlds on 3.0-current systems again.  objformat
calls getobjformat(), which doesn't exist in 2.2's libc.
Technically there should have been a version number bump when it was
added in -current.  But it's used in so few places that it hardly
seems worth that.  Besides, the objformat program is very heavily
used during a make world; it won't hurt to have it load a little
faster.
1998-11-01 02:37:40 +00:00

22 lines
655 B
Makefile

# $FreeBSD$
PROG= objformat
CFLAGS+= -Wall
NOSHARED?= YES
LINKS+= ${BINDIR}/objformat ${BINDIR}/addr2line
LINKS+= ${BINDIR}/objformat ${BINDIR}/ar
LINKS+= ${BINDIR}/objformat ${BINDIR}/as
LINKS+= ${BINDIR}/objformat ${BINDIR}/c++filt
LINKS+= ${BINDIR}/objformat ${BINDIR}/gdb
LINKS+= ${BINDIR}/objformat ${BINDIR}/ld
LINKS+= ${BINDIR}/objformat ${BINDIR}/nm
LINKS+= ${BINDIR}/objformat ${BINDIR}/objcopy
LINKS+= ${BINDIR}/objformat ${BINDIR}/objdump
LINKS+= ${BINDIR}/objformat ${BINDIR}/ranlib
LINKS+= ${BINDIR}/objformat ${BINDIR}/size
LINKS+= ${BINDIR}/objformat ${BINDIR}/strings
LINKS+= ${BINDIR}/objformat ${BINDIR}/strip
.include <bsd.prog.mk>