Updated FSF address in all files. Fixes ticket:51
[debian/gnuradio] / ezdop / src / host / hunter / src / Makefile.am
1 # Copyright 2006 Johnathan Corgan.
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License version 2
5 # as published by the Free Software Foundation.
6
7 # This software is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10 # GNU General Public License for more details.
11
12 # You should have received a copy of the GNU General Public License
13 # along with GNU Radio; see the file COPYING.  If not, write to
14 # the Free Software Foundation, Inc., 51 Franklin Street,
15 # Boston, MA 02110-1301, USA.
16
17 bin_PROGRAMS = hunter
18 hunter_SOURCES = \
19                  calibrate.cc \
20                  doppler.cc   \
21                  gps.cc       \
22                  histogram.cc \
23                  hunter.cc    \
24                  hunterapp.cc \
25                  hunter.xrc    \
26                  known.cc     \
27                  resource.cc  \
28                  sample.cc    \
29                  samplelog.cc \
30                  search.cc    \
31                  serial.cc    \
32                  settings.cpp \
33                  spherical.cc \
34                  tactical.cc
35
36 # FIXME: put in config macro
37 EZDOP_LIBS = -L/usr/local/lib -lezdop
38
39 hunter_CXXFLAGS = $(WX_FLAGS)
40 hunter_LDADD = \
41     $(WX_LIBS) \
42     $(EZDOP_LIBS)
43
44 BUILT_SOURCES = \
45     $(top_builddir)/src/resource.cc
46     
47 $(top_builddir)/src/resource.cc: hunter.xrc
48         wxrc -c -o $(top_builddir)/src/resource.cc $(top_srcdir)/src/hunter.xrc
49
50 MOSTLYCLEANFILES = $(BUILT_SOURCES)