~ubuntu-branches/ubuntu/precise/gnuradio/precise

« back to all changes in this revision

Viewing changes to usrp/fpga/rbf/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Kamal Mostafa
  • Date: 2010-03-13 07:46:01 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100313074601-zjsa893a87bozyh7
Tags: 3.2.2.dfsg-1ubuntu1
* Fix build for Ubuntu lucid (LP: #260406)
  - add binary package dep for libusrp0, libusrp2-0: adduser
  - debian/rules clean: remove pre-built Qt moc files

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
 
# Copyright 2005,2006 Free Software Foundation, Inc.
 
2
# Copyright 2005,2006,2009 Free Software Foundation, Inc.
3
3
4
4
# This file is part of GNU Radio
5
5
19
19
# Boston, MA 02110-1301, USA.
20
20
21
21
 
22
 
include $(top_srcdir)/Makefile.common
23
 
 
24
 
datadir = $(prefix)/share/usrp
25
 
 
26
 
rbfs =                          \
27
 
        rev2/std_2rxhb_2tx.rbf  \
28
 
        rev2/std_4rx_0tx.rbf    \
29
 
        rev4/std_2rxhb_2tx.rbf  \
30
 
        rev4/std_4rx_0tx.rbf    \
31
 
        rev2/multi_2rxhb_2tx.rbf        \
32
 
        rev4/multi_2rxhb_2tx.rbf                
33
 
 
34
 
 
35
 
EXTRA_DIST =                    \
36
 
        $(rbfs)
37
 
 
38
 
 
39
 
install-data-local:
40
 
        @for file in $(rbfs); do \
41
 
                echo "$(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(datadir)/$$file"; \
42
 
                $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(datadir)/$$file; \
43
 
        done
44
 
 
45
 
uninstall-local:
46
 
        @for file in $(rbfs); do \
47
 
                echo "$(RM) $(DESTDIR)$(datadir)/$$file"; \
48
 
                $(RM) $(DESTDIR)$(datadir)/$$file; \
49
 
        done
 
22
SUBDIRS = rev2 rev4