77dfb966d9
Move our old a.out utils to /usr/libexec/aout. Enable binutils and put the utils in /usr/libexec/elf Enable objformat, a little helper program that calls the right utils based on /etc/objformat and $OBJFORMAT. This will enable the ELF generating tools. Remember that this is only step one, the system is still compiled and run in a.out format ONLY. Problem left to solve: The BSD manpages wins over the GNU equivalents as the are installed last. We need to distinguish between the manpages somehow...
12 lines
243 B
Makefile
12 lines
243 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
PROG= ranlib
|
|
BINDIR= /usr/libexec/aout
|
|
SRCS= archive.c build.c misc.c ranlib.c touch.c
|
|
CFLAGS+=-I${.CURDIR} -I${.CURDIR}/../ar
|
|
MAN1= ranlib.1
|
|
MAN5= ranlib.5
|
|
VPATH= ${.CURDIR}/../ar
|
|
|
|
.include <bsd.prog.mk>
|