diff options
author | obrien <obrien@FreeBSD.org> | 1997-03-29 23:11:22 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1997-03-29 23:11:22 +0000 |
commit | 8d4a60ff51049ee35081778e0b0e3911e8c8f35b (patch) | |
tree | 85dd66a6eb0e677dc4063d6e275c6fc0dc11543d /contrib/cpio | |
parent | 54e8b4d91d018927c6c256115fb789fa14c3a64e (diff) | |
download | FreeBSD-src-8d4a60ff51049ee35081778e0b0e3911e8c8f35b.zip FreeBSD-src-8d4a60ff51049ee35081778e0b0e3911e8c8f35b.tar.gz |
FreeBSD BSD-style Makefile for contributed CPIO source.
Diffstat (limited to 'contrib/cpio')
-rw-r--r-- | contrib/cpio/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/contrib/cpio/Makefile b/contrib/cpio/Makefile new file mode 100644 index 0000000..68d3f4a --- /dev/null +++ b/contrib/cpio/Makefile @@ -0,0 +1,19 @@ +# $Id: Makefile-bison,v 1.3 1997/02/22 15:44:42 peter Exp $ + +.PATH: ${.CURDIR}/../../../contrib/cpio + +PROG= cpio +MAN1= cpio.1 + +CFLAGS+= -I${.CURDIR} -DRETSIGTYPE=void -DHAVE_SYS_MTIO_H=1 -DSTDC_HEADERS=1 \ + -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_FCNTL_H=1 -DHAVE_UTIME_H=1 \ + -DHAVE_STRERROR=1 -DHAVE_VPRINTF=1 -DDIRENT=1 -DHAVE_LCHOWN + +SRCS = copyin.c copyout.c copypass.c defer.c dirname.c dstring.c error.c \ + filemode.c getopt.c getopt1.c global.c idcache.c main.c makepath.c \ + rtapelib.c stripslash.c tar.c userspec.c util.c version.c \ + xmalloc.c xstrdup.c + +SRCS+= lchown.c + +.include <bsd.prog.mk> |