~ubuntu-branches/ubuntu/lucid/gavl/lucid

« back to all changes in this revision

Viewing changes to gavl/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Romain Beauxis
  • Date: 2008-11-07 13:47:46 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20081107134746-s4s970fo1bcde9zw
Tags: 1.0.1-1
* Adopted package for debian, with the blessing of previous maintainer.
* Based new package on Christian Marillat's package for debian-multimedia.
* Removed support for ccache until I figure out how to make it work
  with cdbs.
* Changed library package name since ABI is not backward compatible, but
  upstream did not bump major soversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
mmx_subdirs = mmx mmxext
5
5
else
6
6
mmx_libs = 
7
 
endif
8
 
 
9
 
SUBDIRS = hq c libgdither libsamplerate $(mmx_subdirs)
 
7
mmx_subdirs =
 
8
endif
 
9
 
 
10
if HAVE_SSE
 
11
sse_libs = sse/libgavl_sse.la
 
12
sse_subdirs = sse
 
13
else
 
14
sse_libs = 
 
15
sse_subdirs =
 
16
endif
 
17
 
 
18
if HAVE_SSE2
 
19
sse2_libs = sse2/libgavl_sse2.la
 
20
sse2_subdirs = sse2
 
21
else
 
22
sse2_libs = 
 
23
sse2_subdirs =
 
24
endif
 
25
 
 
26
if HAVE_SSE3
 
27
sse3_libs = sse3/libgavl_sse3.la
 
28
sse3_subdirs = sse3
 
29
else
 
30
sse3_libs = 
 
31
sse3_subdirs =
 
32
endif
 
33
 
 
34
if HAVE_3DNOW
 
35
threednow_libs = 3dnow/libgavl_3dnow.la
 
36
threednow_subdirs = 3dnow
 
37
else
 
38
threednow_libs = 
 
39
threednow_subdirs =
 
40
endif
 
41
 
 
42
 
 
43
SUBDIRS = hq c libgdither libsamplerate $(mmx_subdirs) \
 
44
$(sse_subdirs) \
 
45
$(sse2_subdirs) \
 
46
$(sse3_subdirs) \
 
47
$(threednow_subdirs)
10
48
 
11
49
lib_LTLIBRARIES= libgavl.la
12
50
#noinst_LTLIBRARIES = libgavl.la
21
59
colorspace.c \
22
60
cputest.c \
23
61
deinterlace.c \
 
62
deinterlace_blend.c \
24
63
deinterlace_copy.c \
 
64
deinterlace_scale.c \
 
65
dsp.c \
 
66
dsputils.c \
25
67
interleave.c \
26
68
memcpy.c \
27
69
mix.c \
47
89
csp_planar_packed.h  \
48
90
csp_planar_planar.h
49
91
 
 
92
AM_LDFLAGS = -export-symbols-regex gavl -version-info @LTVERSION_CURRENT@:@LTVERSION_REVISION@:@LTVERSION_AGE@
 
93
 
50
94
libgavl_la_LIBADD = \
51
95
@GMERLIN_DEP_LIBS@ \
52
96
$(mmx_libs) \
 
97
$(sse_libs) \
 
98
$(sse2_libs) \
 
99
$(sse3_libs) \
 
100
$(threednow_libs) \
53
101
c/libgavl_c.la \
54
102
hq/libgavl_hq.la \
55
103
libgdither/libgdither.la \