diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 deleted file mode 100644 index 19f1c60..0000000 --- a/build/Jamfile.v2 +++ /dev/null @@ -1,28 +0,0 @@ - -# (C) Copyright Tobias Schwinger -# -# Use modification and distribution are subject to the boost Software License, -# Version 1.0. (See http:/\/www.boost.org/LICENSE_1_0.txt). - -# Generates preprocessed files with wave. - -rule wave -{ - Depends $1 : $2 ; -} - -actions wave -{ - chdir $(BOOST_ROOT)/libs/function_types/build - $(BOOST_ROOT)/dist/bin/wave -S$(BOOST_ROOT) $(>) -o $(<) -} - -make $(BOOST_ROOT)/libs/function_types/build/timestamps/arity_loops - : preprocess_arity_loops.cpp : wave ; - -make $(BOOST_ROOT)/libs/function_types/build/timestamps/encoding - : preprocess_encoding.cpp : wave ; - -make $(BOOST_ROOT)/libs/function_types/build/timestamps/cc_names - : preprocess_cc_names.cpp : wave ; - diff --git a/build/timestamps/arity_loops b/build/timestamps/arity_loops new file mode 100644 index 0000000..f91091c --- /dev/null +++ b/build/timestamps/arity_loops @@ -0,0 +1 @@ +timestamp file diff --git a/build/timestamps/cc_names b/build/timestamps/cc_names new file mode 100644 index 0000000..f91091c --- /dev/null +++ b/build/timestamps/cc_names @@ -0,0 +1 @@ +timestamp file diff --git a/build/timestamps/encoding b/build/timestamps/encoding new file mode 100644 index 0000000..f91091c --- /dev/null +++ b/build/timestamps/encoding @@ -0,0 +1 @@ +timestamp file diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2 deleted file mode 100644 index 26bc09a..0000000 --- a/doc/Jamfile.v2 +++ /dev/null @@ -1,19 +0,0 @@ - -using quickbook ; - -xml function_types : function_types.qbk ; -boostbook standalone - : - function_types - : - boost.root=../../../.. - boost.libraries=../../../libraries.htm - nav.layout=none - navig.graphics=0 - chunk.first.sections=1 - chunk.section.depth=2 - generate.section.toc.level=2 - toc.section.depth=1 - toc.max.depth=1 - ; - diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 deleted file mode 100644 index 34658ee..0000000 --- a/test/Jamfile.v2 +++ /dev/null @@ -1,85 +0,0 @@ - -# (C) Copyright Tobias Schwinger -# -# Use, modification and distribution are subject to the Boost Software License, -# Version 1.0. (See http://www.boost.org/LICENSE_1_0.txt). - -#------------------------------------------------------------------------------- - -import testing ; - -{ - test-suite function_types : - - # Classification - - [ compile classification/is_function.cpp ] - [ compile classification/is_function_pointer.cpp ] - [ compile classification/is_function_reference.cpp ] - [ compile classification/is_member_function_pointer.cpp ] - [ compile classification/is_member_object_pointer.cpp ] - [ compile classification/is_callable_builtin.cpp ] - [ compile classification/is_nonmember_callable_builtin.cpp ] - [ compile classification/is_member_pointer.cpp ] - - [ compile classification/is_cv_mem_func_ptr.cpp ] - [ compile classification/is_variadic.cpp ] - [ compile classification/is_cv_pointer.cpp ] - # [ compile classification/is_cv_function.cpp ] - - # Decomposition - - [ compile decomposition/components.cpp ] - [ compile decomposition/result_type.cpp ] - [ compile decomposition/function_arity.cpp ] - [ compile decomposition/parameter_types.cpp ] - - [ compile decomposition/components_seq.cpp ] - [ compile decomposition/class_type_transform.cpp ] - - [ compile-fail decomposition/result_type_fail.cpp ] - [ compile-fail decomposition/parameter_types_fail.cpp ] - [ compile-fail decomposition/function_arity_fail.cpp ] - - # Synthesis - - [ compile synthesis/function_type.cpp ] - [ compile synthesis/function_pointer.cpp ] - [ compile synthesis/function_reference.cpp ] - [ compile synthesis/member_function_pointer.cpp ] - [ compile synthesis/member_object_pointer.cpp ] - - [ compile synthesis/transformation.cpp ] - [ compile synthesis/mem_func_ptr_cv1.cpp ] - [ compile synthesis/mem_func_ptr_cv2.cpp ] - [ compile synthesis/mem_func_ptr_cv_ptr_to_this.cpp ] - [ compile synthesis/variadic_function_synthesis.cpp ] - # [ compile synthesis/cv_function_synthesis.cpp ] - - # Reconfiguration - - [ compile reconfiguration/preprocessing_mode.cpp ] - [ compile reconfiguration/partial_arity_preprocessing.cpp ] - [ compile reconfiguration/cc_preprocessing.cpp ] - - # Custom calling conventions - - [ compile custom_ccs/nonmember_ccs.cpp ] - [ compile custom_ccs/nonmember_ccs_exact.cpp ] - [ compile custom_ccs/member_ccs.cpp ] - [ compile custom_ccs/member_ccs_exact.cpp ] - - # Code from the examples - - [ compile ../example/interpreter_example.cpp ] - [ compile ../example/result_of_example.cpp ] - [ compile ../example/interface_example.cpp ] - [ compile ../example/fast_mem_fn_example.cpp - # needed for Boost.PP file iteration with some compilers - : ../example - ] - [ compile ../example/macro_type_args_example.cpp ] - ; -} - -