blob: b391a0d3dd5c904966d122bf65eb408cd92cb3cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: Makefile,v 1.5 2017/04/20 13:11:04 joerg Exp $
PROG= tar
SRCS= bsdtar.c cmdline.c creation_set.c read.c subst.c util.c write.c
.include <bsd.init.mk>
.PATH: ${LIBARCHIVEDIR}/tar
CLEANFILES+= tar.1
tar.1: ${LIBARCHIVEDIR}/tar/bsdtar.1
${TOOL_CAT} ${LIBARCHIVEDIR}/tar/bsdtar.1 > $@
SYMLINKS+=${BINDIR}/tar /usr/bin/tar
COPTS.read.c += -Wno-format-nonliteral
.include <bsd.prog.mk>
|