blob: 6174f882d9fafabd36be3efb5fd066375c81b2cd (
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
|
include $(top_srcdir)/misc/Makefile.common
noinst_LTLIBRARIES = libxineutils.la
EXTRA_DIST = ppcasm_string.S ppc_asm.tmpl
if PPC_ARCH
pppc_files = ppcasm_string.S
endif
if HAVE_XV_STATIC
xv_libs = $(XV_LIB)
endif
AM_CFLAGS = $(THREAD_CFLAGS) $(X_CFLAGS)
libxineutils_la_SOURCES = $(pppc_files) \
cpu_accel.c \
color.c \
list.c \
memcpy.c \
monitor.c \
utils.c \
xine_check.c \
xine_mutex.c \
xmllexer.c \
xmlparser.c \
xine_buffer.c
libxineutils_la_LIBADD = $(THREAD_LIBS) $(xv_libs)
include_HEADERS = attributes.h \
compat.h \
xineutils.h \
xine_check.h \
xmllexer.h \
xmlparser.h \
xine_buffer.h
noinst_HEADERS = ppcasm_string.h
|