Makefile.am 650 B

12345678910111213141516171819202122232425
  1. #
  2. # Makefile for building tificc
  3. # Originally written by Bob Friesenhahn, June 2003
  4. # bugs introduced by Marti Maria
  5. # Don't require all the GNU mandated files
  6. AUTOMAKE_OPTIONS = 1.7 foreign no-dependencies
  7. AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include \
  8. -I$(top_srcdir)/utils/common -I$(top_builddir)/utils/common
  9. if HasTIFF
  10. bin_PROGRAMS = tificc
  11. else
  12. bin_PROGRAMS =
  13. endif
  14. tificc_LDADD = $(top_builddir)/src/liblcms2mt.la @TIFFICC_DEPLIBS@
  15. tificc_LDFLAGS = @LDFLAGS@
  16. tificc_SOURCES = tificc.c ../common/xgetopt.c ../common/vprf.c ../common/utils.h
  17. man_MANS = tificc.1
  18. EXTRA_DIST = $(man_MANS)