~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to mpeglib_artsplug/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This file you have to edit. Change the name here
 
2
 
 
3
 
 
4
mcopclassdir                    =       $(libdir)/mcop
 
5
mcopclass_DATA                  =       WAVPlayObject.mcopclass \
 
6
                                        MP3PlayObject.mcopclass \
 
7
                                        MPGPlayObject.mcopclass \
 
8
                                        OGGPlayObject.mcopclass \
 
9
                                        CDDAPlayObject.mcopclass \
 
10
                                        VCDPlayObject.mcopclass \
 
11
                                        NULLPlayObject.mcopclass \
 
12
                                        SplayPlayObject.mcopclass
 
13
 
 
14
 
 
15
 
 
16
EXTRA_DIST                      =       doemacs  \
 
17
                                        configure.in.in \
 
18
                                        decoderBaseObject.idl \
 
19
                                        splayPlayObject.idl \
 
20
                                        $(mcopclass_DATA)
 
21
 
 
22
 
 
23
BUILT_SOURCES                   =       decoderBaseObject.h \
 
24
                                        decoderBaseObject.cc \
 
25
                                        splayPlayObject.h \
 
26
                                        splayPlayObject.cc
 
27
 
 
28
 
 
29
noinst_HEADERS                  =       mp3PlayObject_impl.h \
 
30
                                        oggPlayObject_impl.h \
 
31
                                        decoderBaseObject_impl.h \
 
32
                                        mpgPlayObject_impl.h \
 
33
                                        wavPlayObject_impl.h \
 
34
                                        cddaPlayObject_impl.h \
 
35
                                        vcdPlayObject_impl.h \
 
36
                                        nullPlayObject_impl.h \
 
37
                                        splayPlayObject_impl.h
 
38
 
 
39
 
 
40
ARTS_INCLUDES                   =       $(ARTSC_INCLUDE) \
 
41
                                        $(ARTSC_INCLUDE)/../arts
 
42
 
 
43
 
 
44
INCLUDES                        =       $(all_includes) \
 
45
                                        -I../mpeglib/lib \
 
46
                                        $(ARTS_INCLUDES)
 
47
 
 
48
 
 
49
lib_LTLIBRARIES                 =       libarts_mpeglib.la \
 
50
                                        libarts_splay.la
 
51
 
 
52
decoderBaseObject.cc            :       decoderBaseObject.h
 
53
 
 
54
decoderBaseObject.h             :       $(srcdir)/decoderBaseObject.idl
 
55
                $(MCOPIDL) $(ARTS_INCLUDES) $(srcdir)/decoderBaseObject.idl
 
56
 
 
57
 
 
58
splayPlayObject.cc              :       splayPlayObject.h
 
59
 
 
60
splayPlayObject.h               :       $(srcdir)/splayPlayObject.idl
 
61
                $(MCOPIDL) $(ARTS_INCLUDES) $(srcdir)/splayPlayObject.idl
 
62
 
 
63
mpeglibartsplugdir              =       $(includedir)/mpeglib_artsplug
 
64
 
 
65
mpeglibartsplug_HEADERS         =       decoderBaseObject_impl.h \
 
66
                                        decoderBaseObject.h \
 
67
                                        decoderBaseObject.idl \
 
68
                                        splayPlayObject_impl.h \
 
69
                                        splayPlayObject.h \
 
70
                                        splayPlayObject.idl
 
71
 
 
72
 
 
73
 
 
74
libarts_mpeglib_la_SOURCES      =       $(BUILT_SOURCES) \
 
75
                                        decoderBaseObject_impl.cpp \
 
76
                                        oggPlayObject_impl.cpp \
 
77
                                        mpgPlayObject_impl.cpp \
 
78
                                        wavPlayObject_impl.cpp \
 
79
                                        mp3PlayObject_impl.cpp \
 
80
                                        cddaPlayObject_impl.cpp \
 
81
                                        vcdPlayObject_impl.cpp \
 
82
                                        nullPlayObject_impl.cpp
 
83
 
 
84
libarts_mpeglib_la_LDFLAGS      =       $(all_libraries) \
 
85
                                        $(top_builddir)/mpeglib/lib/libmpeg.la \
 
86
                                        -module \
 
87
                                        -release $(MPEGLIB_ARTS_VERSION) \
 
88
                                        -version-info $(MPEGLIB_ARTS_MAJOR_VERSION):$(MPEGLIB_ARTS_MINOR_VERSION):$(MPEGLIB_ARTS_MICRO_VERSION)
 
89
 
 
90
libarts_splay_la_SOURCES        =       splayPlayObject.cc \
 
91
                                        splayPlayObject_impl.cpp
 
92
 
 
93
libarts_splay_la_LDFLAGS        =       $(all_libraries) \
 
94
                                        $(top_builddir)/mpeglib/lib/libmpeg.la \
 
95
                                        -module
 
96
 
 
97
 
 
98
bin_PROGRAMS                    =       mpeglibartsplay  so_play
 
99
 
 
100
mpeglibartsplay_SOURCES         =       mpeglibartsplay.cpp
 
101
 
 
102
mpeglibartsplay_LDADD           =       $(all_libraries) \
 
103
                                        $(ARTSC_LIBS) \
 
104
                                        -lsoundserver_idl \
 
105
                                        -lkmedia2_idl \
 
106
                                        -lartsflow_idl \
 
107
                                        -lmcop
 
108
 
 
109
so_play_SOURCES                 =       so_play.cpp
 
110
 
 
111
so_play_LDADD                   =       $(mpeglibartsplay_LDADD) -lqt
 
112
 
 
113
 
 
114
 
 
115
 
 
116
 
 
117
 
 
118