~ubuntu-branches/ubuntu/breezy/kdemultimedia/breezy

« back to all changes in this revision

Viewing changes to mpeglib_artsplug/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-03-24 04:48:58 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050324044858-8ff88o9jxej6ii3d
Tags: 4:3.4.0-0ubuntu3
Add kubuntu_02_hide_arts_menu_entries.diff to hide artsbuilder and artscontrol k-menu entries

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
mcopclassdir                    =       $(libdir)/mcop
5
5
mcopclass_DATA                  =       WAVPlayObject.mcopclass \
6
6
                                        MP3PlayObject.mcopclass \
7
 
                                        MPGPlayObject.mcopclass \
8
7
                                        OGGPlayObject.mcopclass \
9
8
                                        CDDAPlayObject.mcopclass \
10
 
                                        VCDPlayObject.mcopclass \
11
9
                                        NULLPlayObject.mcopclass \
12
10
                                        SplayPlayObject.mcopclass
13
11
 
38
36
 
39
37
 
40
38
ARTS_INCLUDES                   =       $(ARTSC_INCLUDE) \
41
 
                                        $(ARTSC_INCLUDE)/../arts
42
 
 
43
 
 
44
 
INCLUDES                        =       $(all_includes) \
45
 
                                        -I../mpeglib/lib \
46
 
                                        $(ARTS_INCLUDES)
 
39
                                        -I$(kde_includes)/arts
 
40
 
 
41
 
 
42
INCLUDES                        =       -I../mpeglib/lib -I$(srcdir)/../mpeglib/lib $(ARTS_INCLUDES) $(all_includes)
47
43
 
48
44
 
49
45
lib_LTLIBRARIES                 =       libarts_mpeglib.la \
50
46
                                        libarts_splay.la
51
47
 
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
 
48
decoderBaseObject.cc decoderBaseObject.h : $(srcdir)/decoderBaseObject.idl
 
49
                $(MCOPIDL) -I$(kde_includes)/arts $(srcdir)/decoderBaseObject.idl
 
50
 
 
51
splayPlayObject.cc splayPlayObject.h : $(srcdir)/splayPlayObject.idl
 
52
                $(MCOPIDL) -I$(kde_includes)/arts $(srcdir)/splayPlayObject.idl
62
53
 
63
54
mpeglibartsplugdir              =       $(includedir)/mpeglib_artsplug
64
55
 
71
62
 
72
63
 
73
64
 
74
 
libarts_mpeglib_la_SOURCES      =       $(BUILT_SOURCES) \
 
65
libarts_mpeglib_la_SOURCES      =       decoderBaseObject.cc \
 
66
                                        splayPlayObject.cc \
75
67
                                        decoderBaseObject_impl.cpp \
76
68
                                        oggPlayObject_impl.cpp \
77
69
                                        mpgPlayObject_impl.cpp \
82
74
                                        nullPlayObject_impl.cpp
83
75
 
84
76
libarts_mpeglib_la_LDFLAGS      =       $(all_libraries) \
85
 
                                        $(top_builddir)/mpeglib/lib/libmpeg.la \
86
77
                                        -module \
87
78
                                        -release $(MPEGLIB_ARTS_VERSION) \
88
79
                                        -version-info $(MPEGLIB_ARTS_MAJOR_VERSION):$(MPEGLIB_ARTS_MINOR_VERSION):$(MPEGLIB_ARTS_MICRO_VERSION)
 
80
libarts_mpeglib_la_LIBADD       =       $(top_builddir)/mpeglib/lib/libmpeg.la 
89
81
 
90
82
libarts_splay_la_SOURCES        =       splayPlayObject.cc \
91
83
                                        splayPlayObject_impl.cpp
92
84
 
93
85
libarts_splay_la_LDFLAGS        =       $(all_libraries) \
94
 
                                        $(top_builddir)/mpeglib/lib/libmpeg.la \
95
86
                                        -module
96
 
 
97
 
 
98
 
bin_PROGRAMS                    =       mpeglibartsplay  so_play
99
 
 
 
87
libarts_splay_la_LIBADD         =       $(top_builddir)/mpeglib/lib/libmpeg.la
 
88
 
 
89
 
 
90
bin_PROGRAMS                    =       mpeglibartsplay
 
91
 
 
92
mpeglibartsplay_LDFLAGS         =       $(ARTSC_LIBS) $(all_libraries)
100
93
mpeglibartsplay_SOURCES         =       mpeglibartsplay.cpp
101
94
 
102
 
mpeglibartsplay_LDADD           =       $(all_libraries) \
103
 
                                        $(ARTSC_LIBS) \
104
 
                                        -lsoundserver_idl \
 
95
mpeglibartsplay_LDADD           =       -lsoundserver_idl \
105
96
                                        -lkmedia2_idl \
106
97
                                        -lartsflow_idl \
107
98
                                        -lmcop
108
 
 
109
 
so_play_SOURCES                 =       so_play.cpp
110
 
 
111
 
so_play_LDADD                   =       $(mpeglibartsplay_LDADD) -lqt
112
 
 
113
 
 
114
 
 
115
 
 
116
 
 
117
 
 
118