blob: a83ff0514c506b52e87927ec1a24e89d705f7771 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
## $Id$
## Proxy Makefile.am to build pixman for TeX Live.
##
## Copyright 2016-2017 Karl Berry <tex-live@tug.org>
## Copyright 2012-2015 Peter Breitenlohner <tex-live@tug.org>
## Copyright 2012 Taco Hoekwater <taco@metatex.org>
##
## This file is free software; the copyright holder
## gives unlimited permission to copy and/or distribute it,
## with or without modifications, as long as this notice is preserved.
##
## We want to re-distribute the whole pixman source tree.
##
EXTRA_DIST = $(PIXMAN_TREE)
## Changes applied to the original source tree
##
EXTRA_DIST += TLpatches
PIXMAN_SRC = $(PIXMAN_TREE)/pixman
# Files not to be distributed
include $(srcdir)/../../am/dist_hook.am
NEVER_NAMES += $(NEVER_NAMES_SUB)
SUBDIRS = . include
AM_CPPFLAGS = -I$(top_srcdir)/$(PIXMAN_SRC)
AM_CFLAGS = $(VISIBILITY_CFLAGS) # $(WARNING_CFLAGS)
noinst_LIBRARIES = libpixman.a
include $(srcdir)/sources.am
libpixman_a_SOURCES = $(libpixman_sources) $(libpixman_headers)
if build
check_PROGRAMS = pixtest
dist_check_SCRIPTS = pixman.test
TESTS = pixman.test
endif build
pixman.log: pixtest$(EXEEXT)
pixtest_SOURCES = pixtest.c
pixtest_CPPFLAGS = -Iinclude
LDADD = libpixman.a
# Rebuild
rebuild_prereq =
rebuild_target = all
CLEANFILES =
include $(srcdir)/../../am/rebuild.am
|