File: Makefile.am

package info (click to toggle)
avfs 1.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,916 kB
  • sloc: ansic: 31,364; sh: 6,482; perl: 1,916; makefile: 351
file content (50 lines) | stat: -rw-r--r-- 796 bytes parent folder | download | duplicates (3)
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