2012-10-26 12:56:34 +00:00
|
|
|
## Makefile.am
|
|
|
|
|
2013-01-25 04:23:23 +00:00
|
|
|
AM_CPPFLAGS = ${libuuid_CFLAGS} -I$(top_srcdir)/include
|
2014-07-23 00:28:14 +00:00
|
|
|
AM_CFLAGS = -Wall -DWITH_BLKDISCARD
|
2012-12-12 03:05:07 +00:00
|
|
|
sbin_PROGRAMS = mkfs.f2fs
|
2015-03-07 16:16:54 +00:00
|
|
|
mkfs_f2fs_SOURCES = f2fs_format_main.c f2fs_format.c f2fs_format_utils.c f2fs_format_utils.h $(top_srcdir)/include/f2fs_fs.h
|
2013-01-25 08:20:16 +00:00
|
|
|
mkfs_f2fs_LDADD = ${libuuid_LIBS} $(top_builddir)/lib/libf2fs.la
|
2015-12-09 18:14:32 +00:00
|
|
|
|
|
|
|
lib_LTLIBRARIES = libf2fs_format.la
|
|
|
|
libf2fs_format_la_SOURCES = f2fs_format_main.c f2fs_format.c f2fs_format_utils.c
|
|
|
|
libf2fs_format_la_CFLAGS = -DWITH_BLKDISCARD
|
|
|
|
libf2fs_format_la_CPPFLAGS = -I$(top_srcdir)/include
|
|
|
|
libf2fs_format_la_LDFLAGS = -luuid -L$(top_srcdir)/lib -lf2fs
|