mirror of
https://gitee.com/openharmony/third_party_f2fs-tools
synced 2024-11-23 10:10:00 +00:00
1d9cbf3c83
commit 1790203deed19a93c60813f75956f2788ac96c95 category: bugfix issue: #I6VAS0 CVE: NA Signed-off-by: DongSenhao <dongsenhao2@huawei.com> --------------------------------------- Fix multiple compiler warnings and build errors reported by the MinGW cross-compiler. Signed-off-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> Signed-off-by: dongsenhao <dongsenhao2@huawei.com>
21 lines
451 B
Makefile
21 lines
451 B
Makefile
## Makefile.am
|
|
|
|
AM_CPPFLAGS = ${libuuid_CFLAGS} -I$(top_srcdir)/include
|
|
AM_CFLAGS = -Wall
|
|
sbin_PROGRAMS = f2fstat
|
|
if !WINDOWS
|
|
sbin_PROGRAMS += fibmap.f2fs parse.f2fs
|
|
endif
|
|
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
|