summaryrefslogtreecommitdiff
path: root/mkfs/Makemodule.am
blob: 33471fcd494a10f7b5c5a16510faf44daf6fece6 (plain)
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
gensquashfs_SOURCES = mkfs/mkfs.c mkfs/mkfs.h mkfs/block.c
gensquashfs_SOURCES += mkfs/options.c mkfs/meta.c
gensquashfs_LDADD = libsquashfs.a libfstree.a libcompress.a libutil.a

if WITH_XZ
gensquashfs_LDADD += $(XZ_LIBS)
endif

if WITH_GZIP
gensquashfs_LDADD += $(ZLIB_LIBS)
endif

if WITH_LZO
gensquashfs_LDADD += $(LZO_LIBS)
endif

if WITH_LZ4
gensquashfs_LDADD += $(LZ4_LIBS)
endif

if WITH_SELINUX
gensquashfs_LDADD += $(LIBSELINUX_LIBS)
endif

bin_PROGRAMS += gensquashfs