summaryrefslogtreecommitdiff
path: root/src/xine-utils/Makefile.am
blob: 783bc7633402960719d7b3e0a3305a6188dd82a5 (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
include $(top_srcdir)/misc/Makefile.quiet
include $(top_srcdir)/misc/Makefile.common

AM_CFLAGS   = $(DEFAULT_OCFLAGS) $(X_CFLAGS) $(VISIBILITY_FLAG)
AM_CPPFLAGS = -DXINE_LIBRARY_COMPILE

EXTRA_DIST = ppcasm_string.S ppc_asm.tmpl

noinst_HEADERS = ppcasm_string.h mangle.h xine_mmx.h

noinst_LTLIBRARIES = libxineutils.la

if ARCH_PPC
if !HOST_OS_DARWIN
pppc_files = ppcasm_string.S
endif
endif

libxineutils_la_SOURCES = $(pppc_files) \
	cpu_accel.c \
	color.c \
	copy.c \
	list.c \
	memcpy.c \
	monitor.c \
	utils.c \
	xine_check.c \
	xine_mutex.c \
	xmllexer.c \
	xine_buffer.c \
	xmlparser.c \
	array.c \
	sorted_array.c \
	pool.c \
	ring_buffer.c

noinst_PROGRAMS = xmltest
xmltest_SOURCES = xmllexer.c xmlparser.c
xmltest_CFLAGS = -DLOG -DXINE_XML_PARSER_TEST $(AM_CFLAGS)