~ubuntu-branches/ubuntu/trusty/gnuradio/trusty

« back to all changes in this revision

Viewing changes to gr-audio-windows/src/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Bdale Garbee
  • Date: 2007-03-11 23:55:32 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070311235532-qwd054rxqtiluifb
Tags: 3.0.3-1
* new upstream version
* tweak gnuradio-doc package to eliminate spurious subdirectory level
* add a usrp-doc binary package, recommended by the usrp package, and 
  include xmlto in build dependencies so usrp_guide.html gets generated, 
  closes: #407368

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
# -*- Makefile -*-
39
39
#
40
 
# Copyright 2004,2006 Free Software Foundation, Inc.
 
40
# Copyright 2004,2006,2007 Free Software Foundation, Inc.
41
41
42
42
# This file is part of GNU Radio
43
43
146
146
ourlibLTLIBRARIES_INSTALL = $(INSTALL)
147
147
LTLIBRARIES = $(ourlib_LTLIBRARIES)
148
148
am__DEPENDENCIES_1 =
 
149
am__DEPENDENCIES_2 =  \
 
150
        $(top_builddir)/gnuradio-core/src/lib/libgnuradio-core.la
149
151
_audio_windows_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
150
 
        $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
 
152
        $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1)
151
153
am__audio_windows_la_OBJECTS = audio_windows.lo audio_windows_sink.lo \
152
154
        audio_windows_source.lo
153
155
_audio_windows_la_OBJECTS = $(am__audio_windows_la_OBJECTS)
408
410
                    $(FFTW3F_CFLAGS)
409
411
 
410
412
 
411
 
# These used to be set in PKGCONFIG but now point to the current
412
 
# build tree.
413
 
GNURADIO_CORE_LIBS = -L$(top_builddir)/gnuradio-core/src/lib \
414
 
                     -lgnuradio-core -lfftw3f -lm
415
 
 
 
413
# How to link in GNU Radio core library from inside the tree
 
414
GNURADIO_CORE_LA = $(top_builddir)/gnuradio-core/src/lib/libgnuradio-core.la
416
415
 
417
416
# This is a dependency for many swig operations
418
417
GNURADIO_I = $(top_srcdir)/gnuradio-core/src/lib/swig/gnuradio.i
419
418
 
420
 
# The below used to be set in PKGCONFIG but now point to the current
421
 
# build tree.
 
419
# How to link in the USRP library from inside the tree
422
420
USRP_INCLUDES = -I$(top_srcdir)/usrp/host/lib \
423
421
                -I$(top_srcdir)/usrp/firmware/include
424
422
 
425
 
USRP_LIBS = -L$(top_builddir)/usrp/host/lib \
426
 
            -lusrp
427
 
 
428
 
PMT_INCLUDES = -I$(top_srcdir)/pmt/src/lib
429
 
PMT_LIBS = -L$(top_builddir)/pmt/src/lib -lpmt
 
423
USRP_LA = $(top_builddir)/usrp/host/lib/libusrp.la
430
424
 
431
425
# This used to be set in configure.ac but is now defined here for all 
432
426
# Makefiles when this fragment is included.
477
471
 
478
472
_audio_windows_la_LIBADD = \
479
473
        $(PYTHON_LDFLAGS)               \
480
 
        $(GNURADIO_CORE_LIBS)           \
 
474
        $(GNURADIO_CORE_LA)             \
481
475
        $(WINAUDIO_LIBS)                \
482
476
        -lstdc++                                
483
477