blob: d605cafea12e8bf0ecee5bcfb3aeb5bc136c8428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $OpenBSD: Makefile,v 1.4 2005/09/19 13:01:26 deraadt Exp $
.include <bsd.own.mk>
.if (${ELF_TOOLCHAIN:L} == "no")
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
MAN= ar.1
.else
NOPROG=
.endif
MAN+= ar.5
.include <bsd.prog.mk>
|