Mercurial > hgrepos > Python2 > PyMuPDF
comparison mupdf-source/thirdparty/jbig2dec/Makefile.am @ 2:b50eed0cc0ef upstream
ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4.
The directory name has changed: no version number in the expanded directory now.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 15 Sep 2025 11:43:07 +0200 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1:1d09e1dec1d9 | 2:b50eed0cc0ef |
|---|---|
| 1 ## process this file with automake to generate Makefile.in | |
| 2 | |
| 3 # require automake 1.7 | |
| 4 AUTOMAKE_OPTIONS = foreign 1.7 dist-bzip2 dist-zip -Wall | |
| 5 | |
| 6 ACLOCAL_AMFLAGS = -I m4 | |
| 7 | |
| 8 lib_LTLIBRARIES = libjbig2dec.la | |
| 9 include_HEADERS = jbig2.h | |
| 10 | |
| 11 AM_CFLAGS = $(XCFLAGS) | |
| 12 | |
| 13 libjbig2dec_la_LDFLAGS = -version-info @JBIG2DEC_LT_CURRENT@:@JBIG2DEC_LT_REVISION@:@JBIG2DEC_LT_AGE@ -no-undefined | |
| 14 libjbig2dec_la_SOURCES = jbig2.c \ | |
| 15 jbig2_arith.c jbig2_arith_int.c jbig2_arith_iaid.c jbig2_huffman.c jbig2_hufftab.c \ | |
| 16 jbig2_segment.c jbig2_page.c \ | |
| 17 jbig2_symbol_dict.c jbig2_text.c \ | |
| 18 jbig2_generic.c jbig2_refinement.c jbig2_mmr.c \ | |
| 19 jbig2_halftone.c \ | |
| 20 jbig2_image.c jbig2_image_pbm.c \ | |
| 21 os_types.h config_types.h config_win32.h \ | |
| 22 jbig2.h jbig2_priv.h jbig2_image.h \ | |
| 23 jbig2_arith.h jbig2_arith_iaid.h jbig2_arith_int.h \ | |
| 24 jbig2_huffman.h jbig2_hufftab.h jbig2_mmr.h \ | |
| 25 jbig2_generic.h jbig2_symbol_dict.h jbig2_text.h \ | |
| 26 memento.c memento.h | |
| 27 | |
| 28 bin_PROGRAMS = jbig2dec | |
| 29 noinst_PROGRAMS = test_sha1 test_huffman test_arith | |
| 30 | |
| 31 jbig2dec_SOURCES = jbig2dec.c sha1.c sha1.h \ | |
| 32 jbig2.h jbig2_image.h getopt.h \ | |
| 33 os_types.h config_types.h config_win32.h | |
| 34 jbig2dec_LDADD = libjbig2dec.la @LIBOBJS@ $(PNG_LIBS) | |
| 35 | |
| 36 pkgconfigdir = $(libdir)/pkgconfig | |
| 37 pkgconfig_DATA = jbig2dec.pc | |
| 38 | |
| 39 dist_man_MANS = jbig2dec.1 | |
| 40 | |
| 41 EXTRA_DIST = test_jbig2dec.py msvc.mak LICENSE CHANGES | |
| 42 | |
| 43 MAINTAINERCLEANFILES = config_types.h.in | |
| 44 | |
| 45 TESTS = test_sha1 test_jbig2dec.py test_huffman test_arith | |
| 46 | |
| 47 test_sha1_SOURCES = sha1.c sha1.h | |
| 48 test_sha1_CFLAGS = -DTEST | |
| 49 | |
| 50 test_arith_SOURCES = jbig2_arith.c | |
| 51 test_arith_CFLAGS = -DTEST | |
| 52 test_arith_LDADD = libjbig2dec.la | |
| 53 | |
| 54 test_huffman_SOURCES = jbig2_huffman.c | |
| 55 test_huffman_CFLAGS = -DTEST | |
| 56 test_huffman_LDADD = libjbig2dec.la | |
| 57 |
