~ubuntu-branches/ubuntu/gutsy/gnuradio/gutsy

« back to all changes in this revision

Viewing changes to gr-wxgui/src/python/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
379
379
                    $(FFTW3F_CFLAGS)
380
380
 
381
381
 
382
 
# These used to be set in PKGCONFIG but now point to the current
383
 
# build tree.
384
 
GNURADIO_CORE_LIBS = -L$(top_builddir)/gnuradio-core/src/lib \
385
 
                     -lgnuradio-core -lfftw3f -lm
386
 
 
 
382
# How to link in GNU Radio core library from inside the tree
 
383
GNURADIO_CORE_LA = $(top_builddir)/gnuradio-core/src/lib/libgnuradio-core.la
387
384
 
388
385
# This is a dependency for many swig operations
389
386
GNURADIO_I = $(top_srcdir)/gnuradio-core/src/lib/swig/gnuradio.i
390
387
 
391
 
# The below used to be set in PKGCONFIG but now point to the current
392
 
# build tree.
 
388
# How to link in the USRP library from inside the tree
393
389
USRP_INCLUDES = -I$(top_srcdir)/usrp/host/lib \
394
390
                -I$(top_srcdir)/usrp/firmware/include
395
391
 
396
 
USRP_LIBS = -L$(top_builddir)/usrp/host/lib \
397
 
            -lusrp
398
 
 
399
 
PMT_INCLUDES = -I$(top_srcdir)/pmt/src/lib
400
 
PMT_LIBS = -L$(top_builddir)/pmt/src/lib -lpmt
 
392
USRP_LA = $(top_builddir)/usrp/host/lib/libusrp.la
401
393
 
402
394
# This used to be set in configure.ac but is now defined here for all 
403
395
# Makefiles when this fragment is included.