Don't build or install ${MAN1}. It's just a copy of ${MAN1aout} and

installing it clobbers the elf ${MAN1}.  The MAN1 -> MAN1aout changes
actually work now.

Fixed order of MAN* and BINDIR.
This commit is contained in:
Bruce Evans 1998-10-10 12:48:48 +00:00
parent e313ef3368
commit 007b865605
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=40176
2 changed files with 6 additions and 6 deletions

View File

@ -1,12 +1,12 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $Id$
PROG= ar
BINDIR= /usr/libexec/aout
MAN1aout=ar.1aout
CFLAGS+=-I${.CURDIR}
SRCS= append.c ar.c archive.c contents.c delete.c extract.c misc.c \
move.c print.c replace.c
MAN1= ar.1
MAN1aout=ar.1aout
MAN5= ar.5
BINDIR= /usr/libexec/aout
.include <bsd.prog.mk>

View File

@ -1,12 +1,12 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $Id$
PROG= ranlib
BINDIR= /usr/libexec/aout
MAN1aout=ranlib.1aout
SRCS= archive.c build.c misc.c ranlib.c touch.c
CFLAGS+=-I${.CURDIR} -I${.CURDIR}/../ar
MAN1= ranlib.1
MAN1aout=ranlib.1aout
MAN5= ranlib.5
BINDIR= /usr/libexec/aout
VPATH= ${.CURDIR}/../ar
.include <bsd.prog.mk>