From ed47c1557915bb2472f6959e723cd76155312a98 Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Mon, 6 Apr 2020 00:50:58 +0800 Subject: Add deduper (unfinished tool for finding image duplicates). --- deduper/libpuzzle/src/Makefile.am | 72 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 deduper/libpuzzle/src/Makefile.am (limited to 'deduper/libpuzzle/src/Makefile.am') diff --git a/deduper/libpuzzle/src/Makefile.am b/deduper/libpuzzle/src/Makefile.am new file mode 100644 index 0000000..3016925 --- /dev/null +++ b/deduper/libpuzzle/src/Makefile.am @@ -0,0 +1,72 @@ +lib_LTLIBRARIES = \ + libpuzzle.la + +libpuzzle_la_LDFLAGS = -version-info 1:0 + +libpuzzle_la_SOURCES = \ + puzzle.c \ + tunables.c \ + dvec.c \ + cvec.c \ + compress.c \ + vector_ops.c \ + puzzle_common.h \ + puzzle_p.h \ + globals.h \ + puzzle.h + +include_HEADERS = \ + puzzle.h + +noinst_HEADERS = \ + puzzle_common.h \ + puzzle_p.h \ + globals.h + +bin_PROGRAMS = \ + puzzle-diff + +puzzle_diff_SOURCES = \ + puzzle-diff.c \ + puzzle_common.h \ + puzzle.h + +puzzle_diff_LDADD = \ + libpuzzle.la + +TESTS = \ + regress_1 \ + regress_2 \ + regress_3 + +check_PROGRAMS = \ + regress_1 \ + regress_2 \ + regress_3 + +regress_1_SOURCES = \ + regress_1.c \ + puzzle_common.h \ + puzzle.h + +regress_2_SOURCES = \ + regress_2.c \ + puzzle_common.h \ + puzzle.h + +regress_3_SOURCES = \ + regress_3.c \ + puzzle_common.h \ + puzzle.h + +regress_1_LDADD = \ + libpuzzle.la + +regress_2_LDADD = \ + libpuzzle.la + +regress_3_LDADD = \ + libpuzzle.la + +SUBDIRS = \ + pics -- cgit v1.2.3