summaryrefslogtreecommitdiff
path: root/hw/xprint/ps/Makefile.am
blob: 0e8193743beff55d597953c916060730d571ba47 (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
noinst_LTLIBRARIES = libps.la

INCLUDES = -I$(top_srcdir)/hw/xprint

AM_CFLAGS = @DIX_CFLAGS@ @XPRINT_CFLAGS@ @FREETYPE_CFLAGS@ \
	-D_XP_PRINT_SERVER_ -DPSZ=8 -DXP_PSTEXT

libps_la_SOURCES =		\
	PsArc.c			\
	PsArea.c		\
	PsAttr.c		\
	PsAttVal.c		\
	PsCache.c		\
	PsColor.c		\
	PsDef.h			\
	PsFonts.c		\
	PsGC.c			\
	Ps.h			\
	PsImageUtil.c		\
	PsInit.c		\
	PsLine.c		\
	PsMisc.c		\
	psout.c			\
	psout.h			\
	PsPixel.c		\
	PsPixmap.c		\
	PsPolygon.c		\
	PsPrint.c		\
	PsSpans.c		\
	PsText.c		\
	PsWindow.c

EXTRA_DIST = 	PsFTFonts.c	\
	psout_ft.c		\
	psout_ftpstype1.c	\
	psout_ftpstype3.c	\
	ttf2pt1wrap.c

if XP_USE_FREETYPE
    AM_CFLAGS += -DXP_USE_FREETYPE
    libps_la_SOURCES += $(EXTRA_DIST)
endif