makefile.am

来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· AM 代码 · 共 114 行

AM
114
字号
##----------------------------------------------------------------------------
##       Makefile.am,v 1.10 2002/09/25 19:37:52 parsons Exp
##
##       Makefile.am for the TAO IDL compiler --- 'be' sub-directory
##----------------------------------------------------------------------------

##
##  Process this file with automake to create Makefile.in
##

## The number in AUTOMAKE_OPTIONS is the minimum required version automake
## needed to process this file.
AUTOMAKE_OPTIONS = 1.4

INCLUDES = -I$(top_builddir) -I$(top_srcdir) \
           -I$(top_srcdir)/TAO_IDL/include \
           -I$(top_srcdir)/TAO_IDL/be_include

noinst_LTLIBRARIES = libbe.la

libbe_la_SOURCES = \
  be_args.cpp \
  be_argument.cpp \
  be_array.cpp \
  be_attribute.cpp \
  be_codegen.cpp \
  be_component.cpp \
  be_component_fwd.cpp \
  be_constant.cpp \
  be_decl.cpp \
  be_enum.cpp \
  be_enum_val.cpp \
  be_eventtype.cpp \
  be_eventtype_fwd.cpp \
  be_exception.cpp \
  be_expression.cpp \
  be_field.cpp \
  be_generator.cpp \
  be_helper.cpp \
  be_home.cpp \
  be_init.cpp \
  be_interface.cpp \
  be_interface_fwd.cpp \
  be_interface_strategy.cpp \
  be_module.cpp \
  be_native.cpp \
  be_operation.cpp \
  be_operation_strategy.cpp \
  be_predefined_type.cpp \
  be_produce.cpp \
  be_root.cpp \
  be_scope.cpp \
  be_sequence.cpp \
  be_stream_factory.cpp \
  be_string.cpp \
  be_structure.cpp \
  be_structure_fwd.cpp \
  be_sunsoft.cpp \
  be_type.cpp \
  be_typedef.cpp \
  be_union.cpp \
  be_union_fwd.cpp \
  be_union_branch.cpp \
  be_union_label.cpp \
  be_valuetype.cpp \
  be_valuetype_fwd.cpp \
  be_visitor.cpp \
  be_visitor_ami_pre_proc.cpp \
  be_visitor_argument.cpp \
  be_visitor_array.cpp \
  be_visitor_attribute.cpp \
  be_visitor_ccm_pre_proc.cpp \
  be_visitor_component.cpp \
  be_visitor_component_fwd.cpp \
  be_visitor_constant.cpp \
  be_visitor_context.cpp \
  be_visitor_decl.cpp \
  be_visitor_enum.cpp \
  be_visitor_eventtype.cpp \
  be_visitor_eventtype_fwd.cpp \
  be_visitor_exception.cpp \
  be_visitor_factory.cpp \
  be_visitor_field.cpp \
  be_visitor_home.cpp \
  be_visitor_interface.cpp \
  be_visitor_interface_fwd.cpp \
  be_visitor_module.cpp \
  be_visitor_operation.cpp \
  be_visitor_root.cpp \
  be_visitor_scope.cpp \
  be_visitor_sequence.cpp \
  be_visitor_structure.cpp \
  be_visitor_typecode.cpp \
  be_visitor_typedef.cpp \
  be_visitor_union.cpp \
  be_visitor_union_branch.cpp \
  be_visitor_valuetype.cpp \
  be_visitor_valuetype_fwd.cpp \
  tmplinst.cpp


dist-hook:
	list=`find * -name CVS -prune -o -type d -print`; for p in $$list; do \
          $(mkinstalldirs) $(distdir)/$$p; \
          cp $$p/*.cpp $(distdir)/$$p; \
        done

## Clean up some additional files/directories possibly created during
## the configure script tests.
clean-local:
	-rm -f *.bak *.rpo *.sym lib*.*_pure_* Makefile.old core
	-rm -rf ptrepository Templates.DB gcctemp.c gcctemp so_locations

⌨️ 快捷键说明

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