~ubuntu-branches/ubuntu/natty/ecasound2.2/natty

« back to all changes in this revision

Viewing changes to libecasound/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Junichi Uekawa
  • Date: 2009-05-06 15:18:46 UTC
  • mfrom: (5.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090506151846-dvp8mirqmxwhve66
Tags: 2.6.0-1
* New upstream release
- 08_fix_header_install: remove
- 07_configure_in_maintainer_mode: update
- do not install manpage copies, and just install symlinks for
  ecatools.1
* Build-Depend on texlive-latex-recommended too for ecrm1000 font.
  (closes: #526535)

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
                        generic-controller.h \
189
189
                        eca-samplerate-aware.h \
190
190
                        eca-audio-format.h \
191
 
                        eca-audio-time.h
 
191
                        eca-audio-time.h \
 
192
                        jack-connections.h
192
193
 
193
194
ecasound_extra_include = \
194
195
                        ladspa.h
198
199
                        eca-test-case.h \
199
200
                        eca-audio-time_test.h \
200
201
                        eca-chainsetup_test.h \
 
202
                        eca-chainsetup-parser_test.h \
201
203
                        eca-control_test.h \
202
204
                        eca-session_test.h \
203
205
                        eca-object-factory_test.h \
273
275
ecasound_audioio2_src = 
274
276
endif
275
277
 
 
278
if ECA_AM_COMPILE_JACK
 
279
jack_connections_src =  jack-connections.cpp
 
280
else
 
281
jack_connections_src =  
 
282
endif
 
283
 
276
284
ecasound_midi_src =     \
277
285
                        midi-server.cpp \
278
286
                        midi-client.cpp \
328
336
 
329
337
ecasound_common1_src =  $(ecasound_audioio1_src) \
330
338
                        $(ecasound_audioio2_src) \
 
339
                        $(jack_connections_src) \
331
340
                        $(ecasound_midi_src) \
332
341
                        $(ecasound_general_src)
333
342