summaryrefslogtreecommitdiff
path: root/Build/source/libs/graphite/Makefile.am
blob: 385c1c0d0bd1cfbb6b6d6c5daff6d2a14bf38c4a (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
57
58
59
60
61
62
63
## Makefile.am for the TeX Live subdirectory libs/graphite/
##
## Copyright (C) 2009, 2010 Peter Breitenlohner <tex-live@tug.org>
## You may freely use, modify and/or distribute this file.
##
ACLOCAL_AMFLAGS = -I ../../m4

# Rebuild
.PHONY: rebuild
rebuild: all

## We want to re-distribute the whole original silgraphite/engine source tree.
##
## With current automake (1.10.2) 'make distcheck' fails when
## DISTFILES contains a directory and files in that directory.
## Thus nodist_* for all files in $(TECKIT_TREE).
EXTRA_DIST = $(GRAPHITE_TREE)

## Patches applied to the original source tree
##
EXTRA_DIST += $(GRAPHITE_TREE)-PATCHES

# in case of an SVN repository
dist-hook:
	rm -rf `find $(distdir) -name .svn`

SUBDIRS = include/graphite

INCLUDES = -I$(top_srcdir)/$(GRAPHITE_TREE)/include/graphite -I$(top_srcdir)/$(GRAPHITE_TREE)/src/generic
INCLUDES += -I$(top_srcdir)/$(GRAPHITE_TREE)/src/font -I$(top_srcdir)/$(GRAPHITE_TREE)/src/segment
AM_CPPFLAGS = -DNDEBUG
AM_CFLAGS = $(WARNING_CFLAGS)
AM_CXXFLAGS = $(WARNING_CXXFLAGS)

noinst_LIBRARIES = libgraphite.a

nodist_libgraphite_a_SOURCES = \
	$(GRAPHITE_TREE)/src/font/FileFont.cpp \
	$(GRAPHITE_TREE)/src/font/Font.cpp \
	$(GRAPHITE_TREE)/src/font/TtfUtil.cpp \
	$(GRAPHITE_TREE)/src/generic/Debug.cpp \
	$(GRAPHITE_TREE)/src/generic/Util.cpp \
	$(GRAPHITE_TREE)/src/painter/SegmentPainter.cpp \
	$(GRAPHITE_TREE)/src/segment/FileInput.cpp \
	$(GRAPHITE_TREE)/src/segment/FontCache.cpp \
	$(GRAPHITE_TREE)/src/segment/FontFace.cpp \
	$(GRAPHITE_TREE)/src/segment/GrCharStream.cpp \
	$(GRAPHITE_TREE)/src/segment/GrClassTable.cpp \
	$(GRAPHITE_TREE)/src/segment/GrEngine.cpp \
	$(GRAPHITE_TREE)/src/segment/GrFSM.cpp \
	$(GRAPHITE_TREE)/src/segment/GrFeature.cpp \
	$(GRAPHITE_TREE)/src/segment/GrGlyphTable.cpp \
	$(GRAPHITE_TREE)/src/segment/GrPass.cpp \
	$(GRAPHITE_TREE)/src/segment/GrPassActionCode.cpp \
	$(GRAPHITE_TREE)/src/segment/GrSlotState.cpp \
	$(GRAPHITE_TREE)/src/segment/GrSlotStream.cpp \
	$(GRAPHITE_TREE)/src/segment/GrTableManager.cpp \
	$(GRAPHITE_TREE)/src/segment/MemoryUsage.cpp \
	$(GRAPHITE_TREE)/src/segment/Platform.cpp \
	$(GRAPHITE_TREE)/src/segment/Segment.cpp \
	$(GRAPHITE_TREE)/src/segment/SegmentAux.cpp \
	$(GRAPHITE_TREE)/src/segment/TransductionLog.cpp