blob: 40c72423d1ef9a1e86262cd07725d31dbcbed225 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
sbin_PROGRAMS = ext4magic
ext4magic_SOURCES = block.c dir_list.c ext4magic.c \
hard_link_stack.c inode.c journal.c lookup_local.c recover.c ring_buf.c util.c
# set the include path found by configure
INCLUDES= $(all_includes)
man_MANS = ext4magic.8
# the library search path.
ext4magic_CFLAGS = -O2 -g -D_FILE_OFFSET_BITS=64
ext4magic_LDFLAGS = -lext2fs -le2p -luuid -lblkid
noinst_HEADERS = block.h dir_list.h ext2fsP.h kernel-list.h ext4magic.h hard_link_stack.h \
inode.h jfs_compat.h jfs_user.h journal.h kernel-jbd.h ring_buf.h util.h ext4magic.8
|