⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.am

📁 gnuradio软件无线电源程序.现在的手机多基于软件无线电
💻 AM
字号:
## Copyright 2001,2002,2004 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.commonINCLUDES = $(STD_DEFINES_AND_INCLUDES) $(CPPUNIT_INCLUDES)noinst_LTLIBRARIES = libgeneral.la# ----------------------------------------------------------------# these scripts generate codeCODE_GENERATOR = 			\	generate_all.py			\	generate_common.py		\	gr_add_XX.cc.t			\	gr_add_XX.h.t			\	gr_add_XX.i.t			\	gr_add_const_XX.cc.t		\	gr_add_const_XX.h.t		\	gr_add_const_XX.i.t		\	gr_divide_XX.cc.t		\	gr_divide_XX.h.t		\	gr_divide_XX.i.t		\	gr_multiply_XX.cc.t		\	gr_multiply_XX.h.t		\	gr_multiply_XX.i.t		\	gr_multiply_const_XX.cc.t	\	gr_multiply_const_XX.h.t	\	gr_multiply_const_XX.i.t	\	gr_mute_XX.cc.t			\	gr_mute_XX.h.t			\	gr_mute_XX.i.t			\	gr_noise_source_X.cc.t		\	gr_noise_source_X.h.t		\	gr_noise_source_X.i.t		\	gr_sig_source_X.cc.t		\	gr_sig_source_X.h.t		\	gr_sig_source_X.i.t		\	gr_sub_XX.cc.t			\	gr_sub_XX.h.t			\	gr_sub_XX.i.t			\	gr_vector_source_X.cc.t		\	gr_vector_source_X.h.t		\	gr_vector_source_X.i.t		\	gr_vector_sink_X.cc.t		\	gr_vector_sink_X.h.t		\	gr_vector_sink_X.i.t		# include $(srcdir)/Makefile.geninclude Makefile.gen$(GENERATED_H) $(GENERATED_I) $(GENERATED_CC): $(CODE_GENERATOR)	PYTHONPATH=$(top_srcdir)/src/python srcdir=$(srcdir) $(srcdir)/generate_all.pyBUILT_SOURCES = $(GENERATED_H) $(GENERATED_I) $(GENERATED_CC)# ----------------------------------------------------------------EXTRA_DIST = 				\	$(CODE_GENERATOR)		\	gen_sine_table.py		FIXME =					\	GrAGC.h				\	GrArbFunc.h			\	GrCircularSink.h		\	GrComplexVCOMixer.h		\	GrCostasLoop.h			\	GrFastChannelizer.h 		\	GrFractionalInterpolatingSigProc.h	\	GrLimiter.h			\	GrMixer.h			\	GrPAMMod.h			\	GrSSBMod.h			\	GrWeaverModHead.h		\	GrWeaverModTail.h		\	GrZOH.h				libgeneral_la_SOURCES = 		\	$(GENERATED_CC)			\	gr_bytes_to_syms.cc		\	gr_check_counting_s.cc		\	gr_check_lfsr_32k_s.cc		\	gr_circular_file.cc		\	gr_complex_to_xxx.cc		\	gr_count_bits.cc		\	gr_deinterleave.cc		\	gr_fft_vcc.cc			\	gr_fft_vfc.cc			\	gr_float_to_complex.cc		\	gr_float_to_short.cc		\	gr_firdes.cc			\	gr_frequency_modulator_fc.cc	\	gr_fxpt.cc			\	gr_head.cc			\	gr_keep_one_in_n.cc		\	gr_interleave.cc		\	gr_interleaved_short_to_complex.cc \	gr_lfsr_32k_source_s.cc		\	gr_math.cc			\	gr_nlog10_ff.cc			\	gr_nop.cc			\	gr_null_sink.cc			\	gr_null_source.cc		\	gr_quadrature_demod_cf.cc	\	gr_parallel_to_serial.cc	\	gr_random.cc			\	gr_remez.cc			\	gr_serial_to_parallel.cc	\	gr_short_to_float.cc		\	gr_simple_framer.cc		\	gr_simple_correlator.cc		\	gr_simple_squelch_cc.cc		\	gr_rms_cf.cc			\	gr_rms_ff.cc			\	gr_sync_block.cc		\	gr_sync_decimator.cc		\	gr_sync_interpolator.cc		\	gri_add_const_ss_generic.cc	\	gri_debugger_hook.cc		\	gri_fft.cc			\	gri_float_to_short.cc		\	gri_short_to_float.cc		\	gri_interleaved_short_to_complex.cc \	malloc16.c			\	qa_general.cc			\	qa_gr_circular_file.cc		\	qa_gr_firdes.cc			\	qa_gr_fxpt.cc			\	qa_gr_fxpt_nco.cc		grinclude_HEADERS = 			\	$(GENERATED_H)			\	malloc16.h			\	gr_agc.h			\	gr_bytes_to_syms.h		\	gr_check_counting_s.h		\	gr_check_lfsr_32k_s.h		\	gr_circular_file.h		\	gr_complex_to_xxx.h		\	gr_count_bits.h			\	gr_deinterleave.h		\	gr_float_to_short.h		\	gr_fft_vcc.h			\	gr_fft_vfc.h			\	gr_firdes.h			\	gr_float_to_complex.h		\	gr_frequency_modulator_fc.h	\	gr_fxpt.h			\	gr_fxpt_nco.h			\	gr_head.h			\	gr_keep_one_in_n.h		\	gr_interleave.h			\	gr_interleaved_short_to_complex.h \	gr_lfsr_32k_source_s.h		\	gr_math.h			\	gr_nlog10_ff.h			\	gr_noise_type.h			\	gr_nop.h			\	gr_null_sink.h			\	gr_null_source.h		\	gr_nco.h			\	gr_parallel_to_serial.h		\	gr_quadrature_demod_cf.h	\	gr_random.h			\	gr_remez.h			\	gr_serial_to_parallel.h		\	gr_short_to_float.h		\	gr_sig_source_waveform.h	\	gr_simple_correlator.h		\	gr_simple_framer.h		\	gr_simple_framer_sync.h		\	gr_simple_squelch_cc.h		\	gr_rms_cf.h			\	gr_rms_ff.h			\	gr_sync_block.h			\	gr_sync_decimator.h		\	gr_sync_interpolator.h		\	gri_add_const_ss.h		\	gri_debugger_hook.h		\	gri_fft.h			\	gri_float_to_short.h		\	gri_interleaved_short_to_complex.h \	gri_lfsr_15_1_0.h		\	gri_lfsr_32k.h			\	gri_short_to_float.h		\	random.h			noinst_HEADERS = 			\	qa_general.h			\	qa_gr_circular_file.h		\	qa_gr_firdes.h			\	qa_gr_fxpt.h			\	qa_gr_fxpt_nco.h		\	sine_table.h			swiginclude_HEADERS =			\	general.i			\	general_generated.i		\	gr_bytes_to_syms.i		\	gr_check_counting_s.i		\	gr_check_lfsr_32k_s.i		\	gr_complex_to_xxx.i		\	gr_deinterleave.i		\	gr_firdes.i			\	gr_fft_vcc.i			\	gr_fft_vfc.i			\	gr_float_to_complex.i		\	gr_float_to_short.i		\	gr_frequency_modulator_fc.i	\	gr_head.i			\	gr_interleave.i 		\	gr_interleaved_short_to_complex.i \	gr_keep_one_in_n.i		\	gr_lfsr_32k_source_s.i		\	gr_nlog10_ff.i			\	gr_nop.i			\	gr_null_sink.i			\	gr_null_source.i		\	gr_parallel_to_serial.i		\	gr_quadrature_demod_cf.i	\	gr_remez.i			\	gr_serial_to_parallel.i		\	gr_short_to_float.i		\	gr_simple_correlator.i		\	gr_simple_framer.i		\	gr_simple_squelch_cc.i		\	gr_rms_cf.i			\	gr_rms_ff.i			\	gr_sync_block.i			\	gr_sync_decimator.i		\	gr_sync_interpolator.i		\	$(GENERATED_I)			CLEANFILES = $(BUILT_SOURCES) *.pyc

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -