blob: 846dd7c6934d87d136da56c2c121cdebbc352902 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
include $(top_srcdir)/Makefile.common
# Install this stuff so that it ends up as the gnuradio.howto module
# This usually ends up at:
# ${prefix}/lib/python${python_version}/site-packages/gnuradio
ourpythondir = $(grpythondir)
ourlibdir = $(grpyexecdir)
INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS)
ourlib_LTLIBRARIES = _howto.la
# These are the source files that go into the shared library
_howto_la_SOURCES = \
howto_square_ff.cc
# magic flags
_howto_la_LDFLAGS = -module -avoid-version
# These headers get installed in ${prefix}/include/gnuradio
grinclude_HEADERS = \
howto_square_ff.h
MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc
|