mirror of
https://gitee.com/openharmony/third_party_f2fs-tools
synced 2024-11-23 18:19:43 +00:00
01ce370d21
We add noinst_HEADERS to include header files which are needed to build but which do not need to be installed on the file system, and include_HEADERS which are header files that should be installed in $(includedir). This fixes 'make distcheck`. Signed-off-by: Anthony G. Basile <blueness@gentoo.org> [Jaegeuk Kim: remove list.h] Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
18 lines
753 B
Makefile
18 lines
753 B
Makefile
## Makefile.am
|
|
|
|
AM_CPPFLAGS = ${libuuid_CFLAGS} -I$(top_srcdir)/include
|
|
AM_CFLAGS = -Wall
|
|
sbin_PROGRAMS = fsck.f2fs
|
|
noinst_HEADERS = common.h dict.h dqblk_v2.h f2fs.h fsck.h node.h quotaio.h quotaio_tree.h quotaio_v2.h xattr.h
|
|
include_HEADERS = $(top_srcdir)/include/quota.h
|
|
fsck_f2fs_SOURCES = main.c fsck.c dump.c mount.c defrag.c resize.c \
|
|
node.c segment.c dir.c sload.c xattr.c \
|
|
dict.c mkquota.c quotaio.c quotaio_tree.c quotaio_v2.c
|
|
fsck_f2fs_LDADD = ${libselinux_LIBS} ${libuuid_LIBS} $(top_builddir)/lib/libf2fs.la
|
|
|
|
install-data-hook:
|
|
ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/dump.f2fs
|
|
ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/defrag.f2fs
|
|
ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/resize.f2fs
|
|
ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/sload.f2fs
|