Remove building with NOCRYPTO option
[minix.git] / bin / pax / Makefile
blob9b2f6a6dbd2030fdc8882c8c5cc7f492479e78b0
1 # $NetBSD: Makefile,v 1.39 2010/04/23 19:41:02 joerg Exp $
2 # @(#)Makefile 8.1 (Berkeley) 5/31/93
4 .include <bsd.own.mk>
6 PROG= pax
7 SRCS= ar_io.c ar_subs.c buf_subs.c file_subs.c ftree.c\
8 gen_subs.c getoldopt.c options.c pat_rep.c pax.c sel_subs.c tables.c\
9 tar.c tty_subs.c
11 .if defined(SMALLPROG)
12 CPPFLAGS+= -DSMALL -DNO_CPIO
13 .else
14 SRCS+= getid.c spec.c misc.c pack_dev.c cpio.c
15 CPPFLAGS+= -I${NETBSDSRCDIR}/usr.sbin/mtree \
16 -I${NETBSDSRCDIR}/sbin/mknod
17 .PATH: ${NETBSDSRCDIR}/usr.sbin/mtree \
18 ${NETBSDSRCDIR}/sbin/mknod
20 .if (${HOSTPROG:U} == "")
21 DPADD+= ${LIBUTIL}
22 LDADD+= -lutil
23 .endif
24 .endif
26 MAN= pax.1 tar.1 cpio.1
28 .if defined(HOSTPROG)
29 CPPFLAGS+= -DHOSTPROG
30 .else # { ! HOSTPROG
32 # XXX: Interix does not have it; we need a conditional for it.
33 CPPFLAGS+= -DHAVE_SYS_MTIO_H
35 .if ${MKBSDTAR} == "no"
36 LINKS+= ${BINDIR}/pax ${BINDIR}/tar
37 SYMLINKS+=${BINDIR}/tar /usr/bin/tar
38 .if defined(__MINIX)
39 SYMLINKS+=${BINDIR}/tar /usr/bin/bsdtar
40 .endif
42 LINKS+= ${BINDIR}/pax ${BINDIR}/cpio
43 SYMLINKS+=${BINDIR}/cpio /usr/bin/cpio
44 .endif
45 .endif # } ! HOSTPROG
47 .if !defined(HOSTPROG) && !defined(SMALLPROG)
48 CPPFLAGS+= -DSUPPORT_RMT
50 LDADD+= -lrmt
51 DPADD+= ${LIBRMT}
52 .endif
54 .if defined(__MINIX)
55 CPPFLAGS+= -DHOSTPROG
57 MLINKS+= pax.1 bsdtar.1
58 .endif # defined(__MINIX)
60 .include <bsd.prog.mk>