1# @(#)Makefile 8.1 (Berkeley) 5/31/93 2# $FreeBSD: src/bin/pax/Makefile,v 1.5.2.1 2001/08/01 05:03:11 obrien Exp $ 3# $DragonFly: src/bin/pax/Makefile,v 1.4 2005/02/06 06:16:40 okumoto Exp $ 4 5# To install on versions prior to BSD 4.4 the following may have to be 6# defined with CFLAGS += 7# 8# -DNET2_STAT Use NET2 or older stat structure. The version of the 9# stat structure is easily determined by looking at the 10# basic type of an off_t (often defined in the file: 11# /usr/include/sys/types.h). If off_t is a long (and is 12# NOT A quad) then you must define NET2_STAT. 13# This define is important, as if you do have a quad_t 14# off_t and define NET2_STAT, pax will compile but will 15# NOT RUN PROPERLY. 16# 17# -DNET2_FTS Use the older NET2 fts. To identify the version, 18# examine the file: /usr/include/fts.h. If FTS_COMFOLLOW 19# is not defined then you must define NET2_FTS. 20# Pax may not compile if this not (un)defined properly. 21# 22# -DNET2_REGEX Use the older regexp.h not regex.h. The regex version 23# is determined by looking at the value returned by 24# regexec() (man 3 regexec). If regexec return a 1 for 25# success (and NOT a 0 for success) you have the older 26# regex routines and must define NET2_REGEX. 27# Pax may not compile if this not (un)defined properly. 28 29PROG= pax 30SRCS= ar_io.c ar_subs.c buf_subs.c cache.c cpio.c file_subs.c ftree.c \ 31 gen_subs.c getoldopt.c options.c pat_rep.c pax.c sel_subs.c \ 32 tables.c tar.c tty_subs.c 33 34WARNS?= 0 # Not yet 35#MAN= pax.1 tar.1 cpio.1 36#LINKS= ${BINDIR}/pax ${BINDIR}/tar ${BINDIR}/pax ${BINDIR}/cpio 37 38.include <bsd.prog.mk> 39