Statistics
| Branch: | Tag: | Revision:

root / gr-atsc / src / lib / Makefile.swig.gen @ 6df0423f

History | View | Annotate | Download (4.4 kB)

1
# -*- Makefile -*-
2
#
3
# Copyright 2009 Free Software Foundation, Inc.
4
# 
5
# This file is part of GNU Radio
6
# 
7
# GNU Radio is free software; you can redistribute it and/or modify
8
# it under the terms of the GNU General Public License as published by
9
# the Free Software Foundation; either version 3, or (at your option)
10
# any later version.
11
# 
12
# GNU Radio is distributed in the hope that it will be useful,
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
# GNU General Public License for more details.
16
# 
17
# You should have received a copy of the GNU General Public License
18
# along with GNU Radio; see the file COPYING.  If not, write to
19
# the Free Software Foundation, Inc., 51 Franklin Street,
20
# Boston, MA 02110-1301, USA.
21
# 
22
23
# Makefile.swig.gen for atsc.i
24
25
## Default install locations for these files:
26
##
27
## Default location for the Python directory is:
28
##  ${prefix}/lib/python${python_version}/site-packages/[category]/atsc
29
## Default location for the Python exec directory is:
30
##  ${exec_prefix}/lib/python${python_version}/site-packages/[category]/atsc
31
##
32
## The following can be overloaded to change the install location, but
33
## this has to be done in the including Makefile.am -before-
34
## Makefile.swig is included.
35
36
atsc_pythondir_category ?= gnuradio/atsc
37
atsc_pylibdir_category ?= $(atsc_pythondir_category)
38
atsc_pythondir = $(pythondir)/$(atsc_pythondir_category)
39
atsc_pylibdir = $(pyexecdir)/$(atsc_pylibdir_category)
40
41
# The .so libraries for the guile modules get installed whereever guile
42
# is installed, usually /usr/lib/guile/gnuradio/
43
# FIXME: determince whether these should be installed with gnuradio.
44
atsc_scmlibdir = $(libdir)
45
46
# The scm files for the guile modules get installed where ever guile
47
# is installed, usually /usr/share/guile/site/atsc
48
# FIXME: determince whether these should be installed with gnuradio.
49
atsc_scmdir = $(guiledir)
50
51
## SWIG headers are always installed into the same directory.
52
53
atsc_swigincludedir = $(swigincludedir)
54
55
## This is a template file for a "generated" Makefile addition (in
56
## this case, "Makefile.swig.gen").  By including the top-level
57
## Makefile.swig, this file will be used to generate the SWIG
58
## dependencies.  Assign the variable TOP_SWIG_FILES to be the list of
59
## SWIG .i files to generated wrappings for; there can be more than 1
60
## so long as the names are unique (no sorting is done on the
61
## TOP_SWIG_FILES list). This file explicitly assumes that a SWIG .i
62
## file will generate .cc, .py, and possibly .h files -- meaning that
63
## all of these files will have the same base name (that provided for
64
## the SWIG .i file).
65
##
66
## This code is setup to ensure parallel MAKE ("-j" or "-jN") does the
67
## right thing.  For more info, see <
68
## http://sources.redhat.com/automake/automake.html#Multiple-Outputs >
69
70
## Other cleaned files: dependency files generated by SWIG or this Makefile
71
72
MOSTLYCLEANFILES += $(DEPDIR)/*.S*
73
74
## Various SWIG variables.  These can be overloaded in the including
75
## Makefile.am by setting the variable value there, then including
76
## Makefile.swig .
77
78
atsc_swiginclude_HEADERS =		\
79
	atsc.i			\
80
	$(atsc_swiginclude_headers)
81
82
if PYTHON
83
atsc_pylib_LTLIBRARIES =		\
84
	_atsc.la
85
86
_atsc_la_SOURCES = 			\
87
	python/atsc.cc		\
88
	$(atsc_la_swig_sources)
89
90
atsc_python_PYTHON =			\
91
	atsc.py			\
92
	$(atsc_python)
93
94
_atsc_la_LIBADD =			\
95
	$(STD_SWIG_LA_LIB_ADD)		\
96
	$(atsc_la_swig_libadd)
97
98
_atsc_la_LDFLAGS =			\
99
	$(STD_SWIG_LA_LD_FLAGS)		\
100
	$(atsc_la_swig_ldflags)
101
102
_atsc_la_CXXFLAGS =			\
103
	$(STD_SWIG_CXX_FLAGS)		\
104
	-I$(top_builddir) 		\
105
	$(atsc_la_swig_cxxflags)
106
107
python/atsc.cc: atsc.py
108
atsc.py: atsc.i
109
110
# Include the python dependencies for this file
111
-include python/atsc.d
112
113
endif		# end of if python
114
115
if GUILE
116
117
atsc_scmlib_LTLIBRARIES = 		\
118
	libguile-gnuradio-atsc.la
119
libguile_gnuradio_atsc_la_SOURCES =	\
120
	guile/atsc.cc			\
121
	$(atsc_la_swig_sources)
122
nobase_atsc_scm_DATA = 		\
123
	gnuradio/atsc.scm 		\
124
	gnuradio/atsc-primitive.scm
125
libguile_gnuradio_atsc_la_LIBADD = 	\
126
	$(STD_SWIG_LA_LIB_ADD)		\
127
	$(atsc_la_swig_libadd)
128
libguile_gnuradio_atsc_la_LDFLAGS = 	\
129
	$(STD_SWIG_LA_LD_FLAGS)		\
130
	$(atsc_la_swig_ldflags)
131
libguile_gnuradio_atsc_la_CXXFLAGS = 	\
132
	$(STD_SWIG_CXX_FLAGS)		\
133
	-I$(top_builddir) 		\
134
	$(atsc_la_swig_cxxflags)
135
136
guile/atsc.cc: gnuradio/atsc.scm
137
gnuradio/atsc.scm: atsc.i
138
gnuradio/atsc-primitive.scm: gnuradio/atsc.scm
139
140
# Include the guile dependencies for this file
141
-include guile/atsc.d
142
143
endif				# end of GUILE
144
145