Makefile.am 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. ## process this file with automake to generate Makefile.in
  2. # require automake 1.7
  3. AUTOMAKE_OPTIONS = foreign 1.7 dist-bzip2 dist-zip -Wall
  4. ACLOCAL_AMFLAGS = -I m4
  5. lib_LTLIBRARIES = libjbig2dec.la
  6. include_HEADERS = jbig2.h
  7. AM_CFLAGS = $(XCFLAGS)
  8. libjbig2dec_la_LDFLAGS = -version-info @JBIG2DEC_LT_CURRENT@:@JBIG2DEC_LT_REVISION@:@JBIG2DEC_LT_AGE@ -no-undefined
  9. libjbig2dec_la_SOURCES = jbig2.c \
  10. jbig2_arith.c jbig2_arith_int.c jbig2_arith_iaid.c jbig2_huffman.c jbig2_hufftab.c \
  11. jbig2_segment.c jbig2_page.c \
  12. jbig2_symbol_dict.c jbig2_text.c \
  13. jbig2_generic.c jbig2_refinement.c jbig2_mmr.c \
  14. jbig2_halftone.c \
  15. jbig2_image.c jbig2_image_pbm.c \
  16. os_types.h config_types.h config_win32.h \
  17. jbig2.h jbig2_priv.h jbig2_image.h \
  18. jbig2_arith.h jbig2_arith_iaid.h jbig2_arith_int.h \
  19. jbig2_huffman.h jbig2_hufftab.h jbig2_mmr.h \
  20. jbig2_generic.h jbig2_symbol_dict.h jbig2_text.h \
  21. memento.c memento.h
  22. bin_PROGRAMS = jbig2dec
  23. noinst_PROGRAMS = test_sha1 test_huffman test_arith
  24. jbig2dec_SOURCES = jbig2dec.c sha1.c sha1.h \
  25. jbig2.h jbig2_image.h getopt.h \
  26. os_types.h config_types.h config_win32.h
  27. jbig2dec_LDADD = libjbig2dec.la @LIBOBJS@ $(PNG_LIBS)
  28. pkgconfigdir = $(libdir)/pkgconfig
  29. pkgconfig_DATA = jbig2dec.pc
  30. dist_man_MANS = jbig2dec.1
  31. EXTRA_DIST = test_jbig2dec.py msvc.mak LICENSE CHANGES
  32. MAINTAINERCLEANFILES = config_types.h.in
  33. TESTS = test_sha1 test_jbig2dec.py test_huffman test_arith
  34. test_sha1_SOURCES = sha1.c sha1.h
  35. test_sha1_CFLAGS = -DTEST
  36. test_arith_SOURCES = jbig2_arith.c
  37. test_arith_CFLAGS = -DTEST
  38. test_arith_LDADD = libjbig2dec.la
  39. test_huffman_SOURCES = jbig2_huffman.c
  40. test_huffman_CFLAGS = -DTEST
  41. test_huffman_LDADD = libjbig2dec.la