1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
## Before Automake 1.8.1 the conditional include_HEADERS are not
## correctly added to the distribution
## Possible solution: Require Automake 1.8.1
## Or (chosen here): Add both files to noinst_HEADERS
if BUILD_SHARED
include_HEADERS = avfs.h virtual.h
else
include_HEADERS = avfs.h
endif
noinst_HEADERS = archive.h \
bzfile.h \
cache.h \
exit.h \
filebuf.h \
filecache.h \
filter.h \
internal.h \
namespace.h \
oper.h \
operutil.h \
parsels.h \
passwords.h \
prog.h \
realfile.h \
remote.h \
runprog.h \
serialfile.h \
socket.h \
state.h \
tmpfile.h \
ugid.h \
zfile.h \
avfs.h \
virtual.h
if USE_LIBLZMA
noinst_HEADERS += xzfile.h
endif
if USE_LIBZSTD
noinst_HEADERS += zstdfile.h
endif
if USE_LIBLZIP
noinst_HEADERS += lzipfile.h
endif
BUILT_SOURCES = version.h
|