diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-05-27 15:07:35 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-05-30 17:49:40 +0200 |
commit | e5f99ba93e08e237962bcf337848e60730aa2d54 (patch) | |
tree | 99fe52e458518b31a589b17ce5a47e7b0ab1d272 /bin/rdsquashfs | |
parent | ceb86b571c1cabf2a0890603b140a1af99912fd9 (diff) |
Cleanup: Reorganize structure of Automake files
- Split up the huge file in bin/ into one small file per sub directory
- Remove the stub in doc/
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'bin/rdsquashfs')
-rw-r--r-- | bin/rdsquashfs/Makemodule.am | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/rdsquashfs/Makemodule.am b/bin/rdsquashfs/Makemodule.am new file mode 100644 index 0000000..d99d6ee --- /dev/null +++ b/bin/rdsquashfs/Makemodule.am @@ -0,0 +1,10 @@ +rdsquashfs_SOURCES = bin/rdsquashfs/rdsquashfs.c bin/rdsquashfs/rdsquashfs.h +rdsquashfs_SOURCES += bin/rdsquashfs/list_files.c bin/rdsquashfs/options.c +rdsquashfs_SOURCES += bin/rdsquashfs/restore_fstree.c bin/rdsquashfs/describe.c +rdsquashfs_SOURCES += bin/rdsquashfs/fill_files.c bin/rdsquashfs/dump_xattrs.c +rdsquashfs_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS) +rdsquashfs_LDADD = libcommon.a libcompat.a libsquashfs.la +rdsquashfs_LDADD += libfstree.a $(LZO_LIBS) $(PTHREAD_LIBS) + +dist_man1_MANS += bin/rdsquashfs/rdsquashfs.1 +bin_PROGRAMS += rdsquashfs |