Mercurial > hgrepos > Python2 > PyMuPDF
comparison mupdf-source/thirdparty/lcms2/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 # Top-Level Makefile for building LittleCMS 2 | |
| 3 # | |
| 4 | |
| 5 # Don't require all the GNU mandated files | |
| 6 AUTOMAKE_OPTIONS = 1.7.2 dist-zip foreign | |
| 7 | |
| 8 ACLOCAL_AMFLAGS = -I m4 | |
| 9 | |
| 10 PACKAGE_NAME = @PACKAGE_NAME@ | |
| 11 PACKAGE_VERSION = @PACKAGE_VERSION@ | |
| 12 | |
| 13 USER_PLUGINS = | |
| 14 if COND_FASTFLOAT | |
| 15 USER_PLUGINS += plugins/fast_float | |
| 16 endif | |
| 17 | |
| 18 if COND_THREADED | |
| 19 USER_PLUGINS += plugins/threaded | |
| 20 endif | |
| 21 | |
| 22 # Directories containing Makefiles to 'make' | |
| 23 SUBDIRS = src include utils/tificc utils/transicc utils/linkicc utils/jpgicc utils/psicc testbed $(USER_PLUGINS) | |
| 24 | |
| 25 # Additional files to distribute | |
| 26 EXTRA_DIST = AUTHORS COPYING ChangeLog doc Projects include bin Lib INSTALL README.md autogen.sh lcms2.pc.in plugins | |
| 27 | |
| 28 pkgconfigdir = $(libdir)/pkgconfig | |
| 29 pkgconfig_DATA = lcms2mt.pc | |
| 30 | |
| 31 | |
| 32 # Make sure get rid of VC stuff... | |
| 33 clean-local: | |
| 34 rm -rf autom4te.cache | |
| 35 find Projects -name "*.user" | xargs rm -rf | |
| 36 find Projects -name "Release" | xargs rm -rf | |
| 37 find Projects -name "Debug" | xargs rm -rf | |
| 38 find Projects -name "*.aps" | xargs rm -rf | |
| 39 find Projects -name "*.suo" | xargs rm -rf | |
| 40 find Projects -name "*.log" | xargs rm -rf | |
| 41 find Projects -name "*.sdf" | xargs rm -rf | |
| 42 find Projects -name "*.opensdf" | xargs rm -rf | |
| 43 find Projects -name "ipch" | xargs rm -rf |
