d14c1502f0
switches to support selecting files by time of modification. Special thanks to: Steven M. Bellovin, Rich $alz, and Jim Berets, authors of the public-domain getdate.y date-parsing code.
22 lines
349 B
Makefile
22 lines
349 B
Makefile
# $FreeBSD$
|
|
|
|
# Process this file with automake to create Makefile.in
|
|
|
|
bin_PROGRAMS= bsdtar
|
|
bsdtar_SOURCES= \
|
|
bsdtar.c \
|
|
bsdtar.h \
|
|
bsdtar_platform.h \
|
|
fts.c \
|
|
fts.h \
|
|
getdate.y \
|
|
matching.c \
|
|
read.c \
|
|
util.c \
|
|
write.c
|
|
bsdtar_LDADD= -larchive -lbz2 -lz
|
|
|
|
dist_man_MANS= bsdtar.1
|
|
|
|
DISTCLEANFILES= getdate.c getdate.h
|