mirror of
https://gitee.com/openharmony/third_party_f2fs-tools
synced 2024-11-27 04:00:57 +00:00
4b55c43828
Otherwise linking will fail if the library is in an uncommon location or has a non-standard name. Signed-off-by: Rolf Eike Beer <eb@emlix.com> Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
18 lines
416 B
Makefile
18 lines
416 B
Makefile
## Makefile.am
|
|
|
|
AM_CPPFLAGS = ${libuuid_CFLAGS} -I$(top_srcdir)/include
|
|
AM_CFLAGS = -Wall
|
|
sbin_PROGRAMS = f2fstat fibmap.f2fs parse.f2fs
|
|
f2fstat_SOURCES = f2fstat.c
|
|
fibmap_f2fs_SOURCES = fibmap.c
|
|
parse_f2fs_SOURCES = f2fs_io_parse.c
|
|
|
|
if LINUX
|
|
sbin_PROGRAMS += f2fscrypt
|
|
f2fscrypt_SOURCES = f2fscrypt.c sha512.c
|
|
f2fscrypt_LDFLAGS = ${libuuid_LIBS}
|
|
dist_man_MANS = f2fscrypt.8
|
|
endif
|
|
|
|
SUBDIRS = sg_write_buffer f2fs_io
|