NetBSD/usr.bin/ar/Makefile

20 lines
433 B
Makefile
Raw Normal View History

1993-07-31 19:17:49 +04:00
# from: @(#)Makefile 5.8 (Berkeley) 3/10/91
# $Id: Makefile,v 1.4 1993/07/31 15:25:54 mycroft Exp $
1993-03-21 12:45:37 +03:00
PROG= ar
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.0
CLEANFILES=ar.5.0
ar.0: ar.5.0
.if !defined(NOMAN)
1993-03-21 12:45:37 +03:00
afterinstall:
1993-07-18 23:06:45 +04:00
install ${COPY} -o ${MANOWN} -g ${MANGRP} -m ${MANMODE} ar.5.0 \
1993-03-21 12:45:37 +03:00
${DESTDIR}${MANDIR}5/ar.0
.endif
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>