diff options
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..40c7242 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,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 |