📄 makefile.am
字号:
## Copyright 2001,2003,2004,2005 Free Software Foundation, Inc.# # This file is part of GNU Radio# # GNU Radio is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.# # GNU Radio is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.# # You should have received a copy of the GNU General Public License# along with GNU Radio; see the file COPYING. If not, write to# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,# Boston, MA 02111-1307, USA.# include $(top_srcdir)/Makefile.common# Install this stuff in the gr subdirectory of the python pkg dir.# This usually ends up at:# ${prefix}/lib/python${python_version}/site-packages/gnuradio/grgrgrpythondir = $(grpythondir)/grgrgrlibdir = $(grpyexecdir)/grINCLUDES = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) -I$(srcdir)EXTRA_DIST = gen-swig-bug-fixLOCAL_IFILES = \ gnuradio.i \ shared_ptr.i ALL_IFILES = \ $(LOCAL_IFILES) BUILT_SOURCES = \ gnuradio_swig_python.cc \ gnuradio_swig_python.py grgrpython_PYTHON = \ gnuradio_swig_python.py SWIGCPPPYTHONARGS = -fvirtual -python $(INCLUDES)# ----------------------------------------------------------------# _gnuradio_swig_python contains all the glue that implements# the gnuradio.gr python packagegrgrlib_LTLIBRARIES = \ _gnuradio_swig_python.la_gnuradio_swig_python_la_SOURCES = \ gnuradio_swig_python.cc _gnuradio_swig_python_la_LIBADD = \ $(top_builddir)/src/lib/libgnuradio-core.la \ -lstdc++_gnuradio_swig_python_la_LDFLAGS = -module -avoid-version# KLUDGE: Force runtime include of gnuradio_swig_python.d dependency file.# This is not guaranteed to be portable, but will probably work.# If it works, we have accurate dependencies for our swig stuff, which is good.@am__include@ @am__quote@./gnuradio_swig_python.d@am__quote@gnuradio_swig_python.cc gnuradio_swig_python.py : gnuradio.i if $(SWIG) $(SWIGCPPPYTHONARGS) -MMD -MF "$*.Td" -module gnuradio_swig_python -o gnuradio_swig_python.cc $< ;\ then mv -f "$*.Td" "$*.d"; else rm -f "$*.Td"; exit 1; fignuradio_swig_bug_workaround.h : gnuradio_swig_python.cc $(srcdir)/gen-swig-bug-fix $< $@# ----------------------------------------------------------------grinclude_HEADERS = \ gnuradio_swig_bug_workaround.hswiginclude_HEADERS = \ $(LOCAL_IFILES) MOSTLYCLEANFILES = \ $(BUILT_SOURCES) *~ *.pyc DISTCLEANFILES = gnuradio_swig_python.d
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -