You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
416 B
18 lines
416 B
## 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
|