# # Copyright 2001,2002,2004,2006,2007,2008,2009 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 3, 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., 51 Franklin Street, # Boston, MA 02110-1301, USA. # include $(top_srcdir)/Makefile.common AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(CPPUNIT_INCLUDES) $(WITH_INCLUDES) #noinst_LTLIBRARIES = libgengen.la libgengen-qa.la noinst_LTLIBRARIES = libgengen.la # ---------------------------------------------------------------- # these scripts generate code core_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_add_vXX.cc.t \ gr_add_vXX.h.t \ gr_add_vXX.i.t \ gr_add_const_vXX.cc.t \ gr_add_const_vXX.h.t \ gr_add_const_vXX.i.t \ gr_argmax_XX.cc.t \ gr_argmax_XX.h.t \ gr_argmax_XX.i.t \ gr_chunks_to_symbols_XX.cc.t \ gr_chunks_to_symbols_XX.h.t \ gr_chunks_to_symbols_XX.i.t \ gr_divide_XX.cc.t \ gr_divide_XX.h.t \ gr_divide_XX.i.t \ gr_integrate_XX.cc.t \ gr_integrate_XX.h.t \ gr_integrate_XX.i.t \ gr_max_XX.cc.t \ gr_max_XX.h.t \ gr_max_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_multiply_vXX.cc.t \ gr_multiply_vXX.h.t \ gr_multiply_vXX.i.t \ gr_multiply_const_vXX.cc.t \ gr_multiply_const_vXX.h.t \ gr_multiply_const_vXX.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_packed_to_unpacked_XX.cc.t \ gr_packed_to_unpacked_XX.h.t \ gr_packed_to_unpacked_XX.i.t \ gr_peak_detector_XX.cc.t \ gr_peak_detector_XX.h.t \ gr_peak_detector_XX.i.t \ gr_sample_and_hold_XX.cc.t \ gr_sample_and_hold_XX.h.t \ gr_sample_and_hold_XX.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_unpacked_to_packed_XX.cc.t \ gr_unpacked_to_packed_XX.h.t \ gr_unpacked_to_packed_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 \ gr_xor_XX.cc.t \ gr_xor_XX.h.t \ gr_xor_XX.i.t \ gr_and_XX.cc.t \ gr_and_XX.h.t \ gr_and_XX.i.t \ gr_or_XX.cc.t \ gr_or_XX.h.t \ gr_or_XX.i.t \ gr_not_XX.cc.t \ gr_not_XX.h.t \ gr_not_XX.i.t \ gr_moving_average_XX.cc.t \ gr_moving_average_XX.h.t \ gr_moving_average_XX.i.t # include the srcdir's Makefile.gen; doing this creates an implicit # dependency between $(srcdir)/Makefile.in and $(srcdir)/Makefile.gen. include $(srcdir)/Makefile.gen # Source built by Python into $(builddir) python_built_sources = \ $(GENERATED_H) \ $(GENERATED_I) \ $(GENERATED_CC) \ gengen_generated.i BUILT_SOURCES = $(python_built_sources) # Required when including Makefile.gen.gen STAMPS = gen_sources = $(BUILT_SOURCES) gen_sources_deps = $(core_generator) MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc # common way for generating sources from templates, using the above parameters include $(top_srcdir)/Makefile.gen.gen # ---------------------------------------------------------------- EXTRA_DIST = \ $(core_generator) libgengen_la_SOURCES = \ $(GENERATED_CC) #libgengen_qa_la_SOURCES = grinclude_HEADERS = \ $(GENERATED_H) \ gr_endianness.h \ gr_noise_type.h \ gr_sig_source_waveform.h noinst_HEADERS = swiginclude_HEADERS = \ $(GENERATED_I) \ gr_endianness.i \ gengen.i \ gengen_generated.i CLEANFILES = $(BUILT_SOURCES) *.pyc