2004-08-07 03:24:49 +00:00
|
|
|
# $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 \
|
2005-03-13 18:36:24 +00:00
|
|
|
getdate.y \
|
2004-08-07 03:24:49 +00:00
|
|
|
matching.c \
|
|
|
|
read.c \
|
|
|
|
util.c \
|
|
|
|
write.c
|
|
|
|
bsdtar_LDADD= -larchive -lbz2 -lz
|
|
|
|
|
|
|
|
dist_man_MANS= bsdtar.1
|
2005-03-13 18:36:24 +00:00
|
|
|
|
|
|
|
DISTCLEANFILES= getdate.c getdate.h
|