comparison mupdf-source/thirdparty/lcms2/src/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 #
2 # Makefile for building lcms 2 library
3 #
4
5 # Don't require all the GNU mandated files
6 AUTOMAKE_OPTIONS = 1.7 foreign
7
8 # CFLAGS = -pedantic -Wall -std=c99 -O3
9
10 includedir = ${prefix}/include
11
12 # Shared libraries built in this directory
13 lib_LTLIBRARIES = liblcms2mt.la
14
15 LIBRARY_CURRENT = @LIBRARY_CURRENT@
16 LIBRARY_REVISION = @LIBRARY_REVISION@
17 LIBRARY_AGE = @LIBRARY_AGE@
18
19 AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include
20
21 liblcms2mt_la_LDFLAGS = -no-undefined \
22 -version-info $(LIBRARY_CURRENT):$(LIBRARY_REVISION):$(LIBRARY_AGE)
23
24 liblcms2mt_la_LIBADD = $(LCMS_LIB_DEPLIBS)
25
26 liblcms2mt_la_SOURCES = \
27 cmscnvrt.c cmserr.c cmsgamma.c cmsgmt.c cmsintrp.c cmsio0.c cmsio1.c cmslut.c \
28 cmsplugin.c cmssm.c cmsmd5.c cmsmtrx.c cmspack.c cmspcs.c cmswtpnt.c cmsxform.c \
29 cmssamp.c cmsnamed.c cmscam02.c cmsvirt.c cmstypes.c cmscgats.c cmsps2.c cmsopt.c \
30 cmshalf.c cmsalpha.c lcms2_internal.h
31