You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
700 B
Makefile
27 lines
700 B
Makefile
5 years ago
|
#
|
||
|
# Makefile for building tifficc
|
||
|
# Originally written by Bob Friesenhahn, June 2003
|
||
|
# bugs introduced by Marti Maria on October 2004
|
||
|
|
||
|
# Don't require all the GNU mandated files
|
||
|
AUTOMAKE_OPTIONS = 1.7 foreign
|
||
|
|
||
|
AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include
|
||
|
|
||
|
if HasTIFF
|
||
|
bin_PROGRAMS = tifficc tiffdiff
|
||
|
else
|
||
|
bin_PROGRAMS =
|
||
|
endif
|
||
|
|
||
|
tifficc_LDADD = $(top_builddir)/src/liblcms.la @TIFFICC_DEPLIBS@
|
||
|
tifficc_LDFLAGS = @LDFLAGS@
|
||
|
tifficc_SOURCES = tifficc.c ../samples/xgetopt.c ../samples/vprf.c
|
||
|
man_MANS = tifficc.1
|
||
|
|
||
|
|
||
|
tiffdiff_LDADD = $(top_builddir)/src/liblcms.la @TIFFICC_DEPLIBS@
|
||
|
tiffdiff_LDFLAGS = @LDFLAGS@
|
||
|
tiffdiff_SOURCES = tiffdiff.c ../samples/xgetopt.c
|
||
|
|
||
|
EXTRA_DIST = $(man_MANS)
|