mirror of
https://gitee.com/openharmony/third_party_f2fs-tools
synced 2024-11-23 10:10:00 +00:00
e69e437850
Let's make a library and relocate functions for other tools like fsck.f2fs. Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
8 lines
215 B
Makefile
8 lines
215 B
Makefile
## Makefile.am
|
|
|
|
AM_CPPFLAGS = ${libuuid_CFLAGS} -I$(top_srcdir)/include
|
|
AM_CFLAGS = -Wall
|
|
sbin_PROGRAMS = mkfs.f2fs
|
|
mkfs_f2fs_SOURCES = f2fs_format.c
|
|
mkfs_f2fs_LDADD = ${libuuid_LIBS} $(top_builddir)/lib/libf2fs.la
|