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