mirror of
https://github.com/mangosfour/server.git
synced 2025-12-11 07:37:02 +00:00
Applied dep and realm updates
This commit is contained in:
parent
12257a5bc2
commit
5260602e28
2020 changed files with 39571 additions and 173090 deletions
46
cmake/FindGit.cmake
Normal file
46
cmake/FindGit.cmake
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
# The module defines the following variables:
|
||||
# GIT_EXECUTABLE - path to git command line client
|
||||
# GIT_FOUND - true if the command line client was found
|
||||
# Example usage:
|
||||
# find_package(Git)
|
||||
# if(GIT_FOUND)
|
||||
# message("git found: ${GIT_EXECUTABLE}")
|
||||
# endif()
|
||||
|
||||
#=============================================================================
|
||||
# Copyright 2010 Kitware, Inc.
|
||||
#
|
||||
# Distributed under the OSI-approved BSD License (the "License");
|
||||
# see accompanying file Copyright.txt for details.
|
||||
#
|
||||
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
||||
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
# See the License for more information.
|
||||
#=============================================================================
|
||||
# (To distributed this file outside of CMake, substitute the full
|
||||
# License text for the above reference.)
|
||||
|
||||
# Look for 'git' or 'eg' (easy git)
|
||||
#
|
||||
set(git_names git eg)
|
||||
|
||||
# Prefer .cmd variants on Windows unless running in a Makefile
|
||||
# in the MSYS shell.
|
||||
#
|
||||
if(WIN32)
|
||||
if(NOT CMAKE_GENERATOR MATCHES "MSYS")
|
||||
set(git_names git.cmd git eg.cmd eg)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
find_program(GIT_EXECUTABLE
|
||||
NAMES ${git_names}
|
||||
DOC "git command line client"
|
||||
)
|
||||
mark_as_advanced(GIT_EXECUTABLE)
|
||||
|
||||
# Handle the QUIETLY and REQUIRED arguments and set GIT_FOUND to TRUE if
|
||||
# all listed variables are TRUE
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args(Git DEFAULT_MSG GIT_EXECUTABLE)
|
||||
107
cmake/FindOpenSSL.cmake
Normal file
107
cmake/FindOpenSSL.cmake
Normal file
|
|
@ -0,0 +1,107 @@
|
|||
#
|
||||
# Find the OpenSSL client includes and library
|
||||
#
|
||||
|
||||
# This module defines
|
||||
# OPENSSL_INCLUDE_DIR, where to find openssl.h
|
||||
# OPENSSL_LIBRARIES, the libraries to link against to connect to MySQL
|
||||
# OPENSSL_FOUND, if false, you cannot build anything that requires MySQL.
|
||||
|
||||
# also defined, but not for general use are
|
||||
# OPENSSL_LIBRARY, where to find the MySQL library.
|
||||
|
||||
if( OPENSSL_INCLUDE_DIR AND OPENSSL_LIBRARIES )
|
||||
# in cache already
|
||||
set(OPENSSL_FOUND 1)
|
||||
else( OPENSSL_INCLUDE_DIR AND OPENSSL_LIBRARIES )
|
||||
set(OPENSSL_FOUND 0)
|
||||
|
||||
if(WIN32)
|
||||
if(PLATFORM MATCHES X64)
|
||||
set(TMP_OPENSSL_INCLUDE_DIR
|
||||
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\OpenSSL (64-bit)_is1;InstallLocation]/include/openssl"
|
||||
)
|
||||
set(TMP_OPENSSL_LIBRARIES
|
||||
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\OpenSSL (64-bit)_is1;InstallLocation]/lib"
|
||||
)
|
||||
else()
|
||||
set(TMP_OPENSSL_INCLUDE_DIR
|
||||
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\OpenSSL (32-bit)_is1;InstallLocation]/include/openssl"
|
||||
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\OpenSSL (32-bit)_is1;InstallLocation]/include/openssl"
|
||||
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\OpenSSL (32-bit)_is1;InstallLocation]/include/openssl"
|
||||
)
|
||||
set(TMP_OPENSSL_LIBRARIES
|
||||
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\OpenSSL (32-bit)_is1;InstallLocation]/lib"
|
||||
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\OpenSSL (32-bit)_is1;InstallLocation]/lib"
|
||||
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\OpenSSL (32-bit)_is1;InstallLocation]/lib"
|
||||
)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
find_path(OPENSSL_INCLUDE_DIR
|
||||
NAMES
|
||||
ssl.h
|
||||
PATHS
|
||||
/usr/include
|
||||
/usr/include/openssl
|
||||
/usr/local/include
|
||||
/usr/local/include/openssl
|
||||
/usr/local/openssl/include
|
||||
${TMP_OPENSSL_INCLUDE_DIR}
|
||||
DOC
|
||||
"Specify the directory containing openssl.h."
|
||||
)
|
||||
|
||||
find_library(OPENSSL_LIBRARIES
|
||||
NAMES
|
||||
ssleay32
|
||||
ssl
|
||||
PATHS
|
||||
/usr/lib
|
||||
/usr/lib/ssl
|
||||
/usr/local/lib
|
||||
/usr/local/lib/ssl
|
||||
/usr/local/ssl/lib
|
||||
${TMP_OPENSSL_LIBRARIES}
|
||||
DOC "Specify the OpenSSL library here."
|
||||
)
|
||||
|
||||
if( WIN32 )
|
||||
find_library(OPENSSL_EXTRA_LIBRARIES
|
||||
NAMES
|
||||
libeay32
|
||||
PATHS
|
||||
${TMP_OPENSSL_LIBRARIES}
|
||||
DOC
|
||||
"if more libraries are necessary to link in a OpenSSL client, specify them here."
|
||||
)
|
||||
endif( WIN32 )
|
||||
|
||||
if( UNIX )
|
||||
find_library(OPENSSL_EXTRA_LIBRARIES
|
||||
NAMES
|
||||
crypto
|
||||
PATHS
|
||||
/usr/lib
|
||||
/usr/lib/ssl
|
||||
/usr/local/lib
|
||||
/usr/local/lib/ssl
|
||||
/usr/local/ssl/lib
|
||||
${TMP_OPENSSL_LIBRARIES}
|
||||
DOC "if more libraries are necessary to link in a OpenSSL client, specify them here."
|
||||
)
|
||||
endif()
|
||||
|
||||
if( OPENSSL_LIBRARIES )
|
||||
if( OPENSSL_INCLUDE_DIR )
|
||||
set( OPENSSL_FOUND 1 )
|
||||
message(STATUS "Found OpenSSL library: ${OPENSSL_LIBRARIES}")
|
||||
message(STATUS "Found OpenSSL headers: ${OPENSSL_INCLUDE_DIR}")
|
||||
else ( OPENSSL_INCLUDE_DIR )
|
||||
message(FATAL_ERROR "Could not find OpenSSL headers! Please install the development-headers")
|
||||
endif( OPENSSL_INCLUDE_DIR )
|
||||
else( OPENSSL_LIBRARIES )
|
||||
message(FATAL_ERROR "Could not find OpenSSL libraries! Please install the library before continuing")
|
||||
endif( OPENSSL_LIBRARIES )
|
||||
mark_as_advanced( OPENSSL_FOUND OPENSSL_LIBRARIES OPENSSL_EXTRA_LIBRARIES OPENSSL_INCLUDE_DIR )
|
||||
endif( OPENSSL_INCLUDE_DIR AND OPENSSL_LIBRARIES )
|
||||
|
|
@ -1,325 +1,104 @@
|
|||
# - Try to find precompiled headers support for GCC 3.4 and 4.x
|
||||
# Once done this will define:
|
||||
#
|
||||
# Variable:
|
||||
# PCHSupport_FOUND
|
||||
#
|
||||
# Macro:
|
||||
# ADD_PRECOMPILED_HEADER _targetName _input _dowarn
|
||||
# ADD_PRECOMPILED_HEADER_TO_TARGET _targetName _input _pch_output_to_use _dowarn
|
||||
# ADD_NATIVE_PRECOMPILED_HEADER _targetName _input _dowarn
|
||||
# GET_NATIVE_PRECOMPILED_HEADER _targetName _input
|
||||
FUNCTION(GET_COMMON_PCH_PARAMS PCH_HEADER PCH_FE INCLUDE_PREFIX)
|
||||
GET_FILENAME_COMPONENT(PCH_HEADER_N ${PCH_HEADER} NAME)
|
||||
GET_DIRECTORY_PROPERTY(TARGET_INCLUDES INCLUDE_DIRECTORIES)
|
||||
|
||||
IF(CMAKE_COMPILER_IS_GNUCXX)
|
||||
FOREACH(ITEM ${TARGET_INCLUDES})
|
||||
LIST(APPEND INCLUDE_FLAGS_LIST "${INCLUDE_PREFIX}\"${ITEM}\" ")
|
||||
ENDFOREACH(ITEM)
|
||||
|
||||
EXEC_PROGRAM(
|
||||
${CMAKE_CXX_COMPILER}
|
||||
ARGS ${CMAKE_CXX_COMPILER_ARG1} -dumpversion
|
||||
OUTPUT_VARIABLE gcc_compiler_version)
|
||||
#MESSAGE("GCC Version: ${gcc_compiler_version}")
|
||||
IF(gcc_compiler_version MATCHES "4\\.[0-9]\\.[0-9]")
|
||||
SET(PCHSupport_FOUND TRUE)
|
||||
ELSE(gcc_compiler_version MATCHES "4\\.[0-9]\\.[0-9]")
|
||||
IF(gcc_compiler_version MATCHES "3\\.4\\.[0-9]")
|
||||
SET(PCHSupport_FOUND TRUE)
|
||||
ENDIF(gcc_compiler_version MATCHES "3\\.4\\.[0-9]")
|
||||
ENDIF(gcc_compiler_version MATCHES "4\\.[0-9]\\.[0-9]")
|
||||
SET(PCH_HEADER_NAME ${PCH_HEADER_N} PARENT_SCOPE)
|
||||
SET(PCH_HEADER_OUT ${CMAKE_CURRENT_BINARY_DIR}/${PCH_HEADER_N}.${PCH_FE} PARENT_SCOPE)
|
||||
SET(INCLUDE_FLAGS ${INCLUDE_FLAGS_LIST} PARENT_SCOPE)
|
||||
ENDFUNCTION(GET_COMMON_PCH_PARAMS)
|
||||
|
||||
SET(_PCH_include_prefix "-I")
|
||||
FUNCTION(GENERATE_CXX_PCH_COMMAND TARGET_NAME INCLUDE_FLAGS IN PCH_SRC OUT)
|
||||
IF (CMAKE_BUILD_TYPE)
|
||||
STRING(TOUPPER _${CMAKE_BUILD_TYPE} CURRENT_BUILD_TYPE)
|
||||
ENDIF ()
|
||||
|
||||
ELSE(CMAKE_COMPILER_IS_GNUCXX)
|
||||
IF(WIN32)
|
||||
SET(PCHSupport_FOUND TRUE) # for experimental msvc support
|
||||
SET(_PCH_include_prefix "/I")
|
||||
ELSE(WIN32)
|
||||
SET(PCHSupport_FOUND FALSE)
|
||||
ENDIF(WIN32)
|
||||
ENDIF(CMAKE_COMPILER_IS_GNUCXX)
|
||||
SET(COMPILE_FLAGS ${CMAKE_CXX_FLAGS${CURRENT_BUILD_TYPE}})
|
||||
LIST(APPEND COMPILE_FLAGS ${CMAKE_CXX_FLAGS})
|
||||
|
||||
IF ("${CMAKE_SYSTEM_NAME}" MATCHES "Darwin")
|
||||
IF (NOT "${CMAKE_OSX_ARCHITECTURES}" STREQUAL "")
|
||||
LIST(APPEND COMPILE_FLAGS "-arch ${CMAKE_OSX_ARCHITECTURES}")
|
||||
ENDIF ()
|
||||
IF (NOT "${CMAKE_OSX_SYSROOT}" STREQUAL "")
|
||||
LIST(APPEND COMPILE_FLAGS "-isysroot ${CMAKE_OSX_SYSROOT}")
|
||||
ENDIF ()
|
||||
IF (NOT "${CMAKE_OSX_DEPLOYMENT_TARGET}" STREQUAL "")
|
||||
LIST(APPEND COMPILE_FLAGS "-mmacosx-version-min=${CMAKE_OSX_DEPLOYMENT_TARGET}")
|
||||
ENDIF ()
|
||||
ENDIF ()
|
||||
|
||||
MACRO(_PCH_GET_COMPILE_FLAGS _out_compile_flags)
|
||||
GET_DIRECTORY_PROPERTY(TARGET_DEFINITIONS COMPILE_DEFINITIONS)
|
||||
FOREACH(ITEM ${TARGET_DEFINITIONS})
|
||||
LIST(APPEND DEFINITION_FLAGS "-D${ITEM} ")
|
||||
ENDFOREACH(ITEM)
|
||||
|
||||
STRING(TOUPPER ${CMAKE_BUILD_TYPE} _build_type)
|
||||
STRING(TOUPPER "CMAKE_CXX_FLAGS_${CMAKE_BUILD_TYPE}" _flags_var_name)
|
||||
SET(${_out_compile_flags} ${${_flags_var_name}} )
|
||||
SEPARATE_ARGUMENTS(COMPILE_FLAGS)
|
||||
SEPARATE_ARGUMENTS(INCLUDE_FLAGS)
|
||||
SEPARATE_ARGUMENTS(DEFINITION_FLAGS)
|
||||
|
||||
IF(CMAKE_COMPILER_IS_GNUCXX)
|
||||
GET_FILENAME_COMPONENT(PCH_SRC_N ${PCH_SRC} NAME)
|
||||
ADD_LIBRARY(${PCH_SRC_N}_dephelp MODULE ${PCH_SRC})
|
||||
|
||||
GET_TARGET_PROPERTY(_targetType ${_PCH_current_target} TYPE)
|
||||
IF(${_targetType} STREQUAL SHARED_LIBRARY)
|
||||
LIST(APPEND ${_out_compile_flags} "${${_out_compile_flags}} -fPIC")
|
||||
ENDIF(${_targetType} STREQUAL SHARED_LIBRARY)
|
||||
|
||||
ELSE(CMAKE_COMPILER_IS_GNUCXX)
|
||||
## TODO ... ? or does it work out of the box
|
||||
ENDIF(CMAKE_COMPILER_IS_GNUCXX)
|
||||
|
||||
GET_DIRECTORY_PROPERTY(DIRINC INCLUDE_DIRECTORIES)
|
||||
FOREACH(item ${DIRINC})
|
||||
LIST(APPEND ${_out_compile_flags} "${_PCH_include_prefix}${item}")
|
||||
ENDFOREACH(item)
|
||||
|
||||
GET_DIRECTORY_PROPERTY(_directory_flags COMPILE_DEFINITIONS)
|
||||
GET_DIRECTORY_PROPERTY(_directory_flags_type COMPILE_DEFINITIONS_${_build_type})
|
||||
LIST(APPEND _directory_flags ${_directory_flags_type})
|
||||
# MESSAGE("_directory_flags ${_directory_flags}" )
|
||||
|
||||
FOREACH(define ${_directory_flags})
|
||||
STRING(REPLACE "\"" "\\\"" escaped_define ${define})
|
||||
LIST(APPEND ${_out_compile_flags} -D${escaped_define})
|
||||
ENDFOREACH(define)
|
||||
LIST(APPEND ${_out_compile_flags} ${CMAKE_CXX_FLAGS} )
|
||||
|
||||
SEPARATE_ARGUMENTS(${_out_compile_flags})
|
||||
|
||||
ENDMACRO(_PCH_GET_COMPILE_FLAGS)
|
||||
|
||||
|
||||
MACRO(_PCH_WRITE_PCHDEP_CXX _targetName _include_file _dephelp)
|
||||
|
||||
SET(${_dephelp} ${CMAKE_CURRENT_BINARY_DIR}/${_targetName}_pch_dephelp.cxx)
|
||||
FILE(WRITE ${${_dephelp}}
|
||||
"#include \"${_include_file}\"
|
||||
int testfunction()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
"
|
||||
)
|
||||
|
||||
ENDMACRO(_PCH_WRITE_PCHDEP_CXX )
|
||||
|
||||
MACRO(_PCH_GET_COMPILE_COMMAND out_command _input _output)
|
||||
|
||||
FILE(TO_NATIVE_PATH ${_input} _native_input)
|
||||
FILE(TO_NATIVE_PATH ${_output} _native_output)
|
||||
|
||||
|
||||
IF(CMAKE_COMPILER_IS_GNUCXX)
|
||||
IF(CMAKE_CXX_COMPILER_ARG1)
|
||||
# remove leading space in compiler argument
|
||||
STRING(REGEX REPLACE "^ +" "" pchsupport_compiler_cxx_arg1 ${CMAKE_CXX_COMPILER_ARG1})
|
||||
|
||||
SET(${out_command}
|
||||
${CMAKE_CXX_COMPILER} ${pchsupport_compiler_cxx_arg1} ${_compile_FLAGS} -x c++-header -o ${_output} ${_input}
|
||||
)
|
||||
ELSE(CMAKE_CXX_COMPILER_ARG1)
|
||||
SET(${out_command}
|
||||
${CMAKE_CXX_COMPILER} ${_compile_FLAGS} -x c++-header -o ${_output} ${_input}
|
||||
)
|
||||
ENDIF(CMAKE_CXX_COMPILER_ARG1)
|
||||
ELSE(CMAKE_COMPILER_IS_GNUCXX)
|
||||
|
||||
SET(_dummy_str "#include <${_input}>")
|
||||
FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/pch_dummy.cpp ${_dummy_str})
|
||||
|
||||
SET(${out_command}
|
||||
${CMAKE_CXX_COMPILER} ${_compile_FLAGS} /c /Fp${_native_output} /Yc${_native_input} pch_dummy.cpp
|
||||
)
|
||||
#/out:${_output}
|
||||
|
||||
ENDIF(CMAKE_COMPILER_IS_GNUCXX)
|
||||
|
||||
ENDMACRO(_PCH_GET_COMPILE_COMMAND )
|
||||
|
||||
|
||||
|
||||
MACRO(_PCH_GET_TARGET_COMPILE_FLAGS _cflags _header_name _pch_path _dowarn )
|
||||
|
||||
FILE(TO_NATIVE_PATH ${_pch_path} _native_pch_path)
|
||||
|
||||
IF(CMAKE_COMPILER_IS_GNUCXX)
|
||||
# for use with distcc and gcc >4.0.1 if preprocessed files are accessible
|
||||
# on all remote machines set
|
||||
# PCH_ADDITIONAL_COMPILER_FLAGS to -fpch-preprocess
|
||||
# if you want warnings for invalid header files (which is very inconvenient
|
||||
# if you have different versions of the headers for different build types
|
||||
# you may set _pch_dowarn
|
||||
IF (_dowarn)
|
||||
SET(${_cflags} "${PCH_ADDITIONAL_COMPILER_FLAGS} -include ${CMAKE_CURRENT_BINARY_DIR}/${_header_name} -Winvalid-pch " )
|
||||
ELSE (_dowarn)
|
||||
SET(${_cflags} "${PCH_ADDITIONAL_COMPILER_FLAGS} -include ${CMAKE_CURRENT_BINARY_DIR}/${_header_name} " )
|
||||
ENDIF (_dowarn)
|
||||
ELSE(CMAKE_COMPILER_IS_GNUCXX)
|
||||
|
||||
set(${_cflags} "/Fp${_native_pch_path} /Yu${_header_name}" )
|
||||
|
||||
ENDIF(CMAKE_COMPILER_IS_GNUCXX)
|
||||
|
||||
ENDMACRO(_PCH_GET_TARGET_COMPILE_FLAGS )
|
||||
|
||||
MACRO(GET_PRECOMPILED_HEADER_OUTPUT _targetName _input _output)
|
||||
GET_FILENAME_COMPONENT(_name ${_input} NAME)
|
||||
GET_FILENAME_COMPONENT(_path ${_input} PATH)
|
||||
SET(_output "${CMAKE_CURRENT_BINARY_DIR}/${_name}.gch/${_targetName}_${CMAKE_BUILD_TYPE}.h++")
|
||||
ENDMACRO(GET_PRECOMPILED_HEADER_OUTPUT _targetName _input)
|
||||
|
||||
|
||||
MACRO(ADD_PRECOMPILED_HEADER_TO_TARGET _targetName _input _pch_output_to_use )
|
||||
|
||||
# to do: test whether compiler flags match between target _targetName
|
||||
# and _pch_output_to_use
|
||||
GET_FILENAME_COMPONENT(_name ${_input} NAME)
|
||||
|
||||
IF( "${ARGN}" STREQUAL "0")
|
||||
SET(_dowarn 0)
|
||||
ELSE( "${ARGN}" STREQUAL "0")
|
||||
SET(_dowarn 1)
|
||||
ENDIF("${ARGN}" STREQUAL "0")
|
||||
|
||||
|
||||
_PCH_GET_TARGET_COMPILE_FLAGS(_target_cflags ${_name} ${_pch_output_to_use} ${_dowarn})
|
||||
# MESSAGE("Add flags ${_target_cflags} to ${_targetName} " )
|
||||
SET_TARGET_PROPERTIES(${_targetName}
|
||||
PROPERTIES
|
||||
COMPILE_FLAGS ${_target_cflags}
|
||||
)
|
||||
|
||||
ADD_CUSTOM_TARGET(pch_Generate_${_targetName}
|
||||
DEPENDS ${_pch_output_to_use}
|
||||
)
|
||||
|
||||
ADD_DEPENDENCIES(${_targetName} pch_Generate_${_targetName} )
|
||||
|
||||
ENDMACRO(ADD_PRECOMPILED_HEADER_TO_TARGET)
|
||||
|
||||
MACRO(ADD_PRECOMPILED_HEADER _targetName _input)
|
||||
|
||||
SET(_PCH_current_target ${_targetName})
|
||||
|
||||
IF(NOT CMAKE_BUILD_TYPE)
|
||||
MESSAGE(FATAL_ERROR
|
||||
"This is the ADD_PRECOMPILED_HEADER macro. "
|
||||
"You must set CMAKE_BUILD_TYPE!"
|
||||
)
|
||||
ENDIF(NOT CMAKE_BUILD_TYPE)
|
||||
|
||||
IF( "${ARGN}" STREQUAL "0")
|
||||
SET(_dowarn 0)
|
||||
ELSE( "${ARGN}" STREQUAL "0")
|
||||
SET(_dowarn 1)
|
||||
ENDIF("${ARGN}" STREQUAL "0")
|
||||
|
||||
|
||||
GET_FILENAME_COMPONENT(_name ${_input} NAME)
|
||||
GET_FILENAME_COMPONENT(_path ${_input} PATH)
|
||||
GET_PRECOMPILED_HEADER_OUTPUT( ${_targetName} ${_input} _output)
|
||||
|
||||
GET_FILENAME_COMPONENT(_outdir ${_output} PATH )
|
||||
|
||||
GET_TARGET_PROPERTY(_targetType ${_PCH_current_target} TYPE)
|
||||
_PCH_WRITE_PCHDEP_CXX(${_targetName} ${_input} _pch_dephelp_cxx)
|
||||
|
||||
IF(${_targetType} STREQUAL SHARED_LIBRARY)
|
||||
ADD_LIBRARY(${_targetName}_pch_dephelp SHARED ${_pch_dephelp_cxx} )
|
||||
ELSE(${_targetType} STREQUAL SHARED_LIBRARY)
|
||||
ADD_LIBRARY(${_targetName}_pch_dephelp STATIC ${_pch_dephelp_cxx})
|
||||
ENDIF(${_targetType} STREQUAL SHARED_LIBRARY)
|
||||
|
||||
FILE(MAKE_DIRECTORY ${_outdir})
|
||||
|
||||
|
||||
_PCH_GET_COMPILE_FLAGS(_compile_FLAGS)
|
||||
|
||||
#MESSAGE("_compile_FLAGS: ${_compile_FLAGS}")
|
||||
#message("COMMAND ${CMAKE_CXX_COMPILER} ${_compile_FLAGS} -x c++-header -o ${_output} ${_input}")
|
||||
SET_SOURCE_FILES_PROPERTIES(${CMAKE_CURRENT_BINARY_DIR}/${_name} PROPERTIES GENERATED 1)
|
||||
ADD_CUSTOM_COMMAND(
|
||||
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_name}
|
||||
COMMAND ${CMAKE_COMMAND} -E copy ${_input} ${CMAKE_CURRENT_BINARY_DIR}/${_name} # ensure same directory! Required by gcc
|
||||
DEPENDS ${_input}
|
||||
OUTPUT ${OUT}
|
||||
COMMAND ${CMAKE_CXX_COMPILER}
|
||||
ARGS ${DEFINITION_FLAGS} ${COMPILE_FLAGS} ${INCLUDE_FLAGS} -x c++-header ${IN} -o ${OUT}
|
||||
DEPENDS ${IN} ${PCH_SRC_N}_dephelp
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
||||
)
|
||||
|
||||
#message("_command ${_input} ${_output}")
|
||||
_PCH_GET_COMPILE_COMMAND(_command ${CMAKE_CURRENT_BINARY_DIR}/${_name} ${_output} )
|
||||
ADD_CUSTOM_TARGET(generate_${PCH_SRC_N}
|
||||
DEPENDS ${OUT}
|
||||
)
|
||||
|
||||
#message(${_input} )
|
||||
#message("_output ${_output}")
|
||||
ADD_DEPENDENCIES(${TARGET_NAME} generate_${PCH_SRC_N})
|
||||
ENDFUNCTION(GENERATE_CXX_PCH_COMMAND)
|
||||
|
||||
ADD_CUSTOM_COMMAND(
|
||||
OUTPUT ${_output}
|
||||
COMMAND ${_command}
|
||||
DEPENDS ${_input} ${CMAKE_CURRENT_BINARY_DIR}/${_name} ${_targetName}_pch_dephelp
|
||||
)
|
||||
FUNCTION(ADD_CXX_PCH_GCC TARGET_NAME PCH_HEADER PCH_SOURCE)
|
||||
GET_COMMON_PCH_PARAMS(${PCH_HEADER} "gch" "-I")
|
||||
GENERATE_CXX_PCH_COMMAND(${TARGET_NAME} "${INCLUDE_FLAGS}" ${PCH_HEADER} ${PCH_SOURCE} ${PCH_HEADER_OUT})
|
||||
SET_TARGET_PROPERTIES(
|
||||
${TARGET_NAME} PROPERTIES
|
||||
COMPILE_FLAGS "-include ${CMAKE_CURRENT_BINARY_DIR}/${PCH_HEADER_NAME}"
|
||||
)
|
||||
ENDFUNCTION(ADD_CXX_PCH_GCC)
|
||||
|
||||
FUNCTION(ADD_CXX_PCH_CLANG TARGET_NAME PCH_HEADER PCH_SOURCE)
|
||||
GET_COMMON_PCH_PARAMS(${PCH_HEADER} "pch" "-I")
|
||||
GENERATE_CXX_PCH_COMMAND(${TARGET_NAME} "${INCLUDE_FLAGS}" ${PCH_HEADER} ${PCH_SOURCE} ${PCH_HEADER_OUT})
|
||||
SET_TARGET_PROPERTIES(
|
||||
${TARGET_NAME} PROPERTIES
|
||||
COMPILE_FLAGS "-include-pch ${PCH_HEADER_OUT}"
|
||||
)
|
||||
ENDFUNCTION(ADD_CXX_PCH_CLANG)
|
||||
|
||||
ADD_PRECOMPILED_HEADER_TO_TARGET(${_targetName} ${_input} ${_output} ${_dowarn})
|
||||
ENDMACRO(ADD_PRECOMPILED_HEADER)
|
||||
FUNCTION(ADD_CXX_PCH_MSVC TARGET_NAME PCH_HEADER PCH_SOURCE)
|
||||
GET_COMMON_PCH_PARAMS(${PCH_HEADER} "pch" "/I")
|
||||
SET_TARGET_PROPERTIES(
|
||||
${TARGET_NAME} PROPERTIES
|
||||
COMPILE_FLAGS "/FI${PCH_HEADER_NAME} /Yu${PCH_HEADER_NAME}"
|
||||
)
|
||||
SET_SOURCE_FILES_PROPERTIES(
|
||||
${PCH_SOURCE} PROPERTIES
|
||||
COMPILE_FLAGS "/Yc${PCH_HEADER_NAME}"
|
||||
)
|
||||
ENDFUNCTION(ADD_CXX_PCH_MSVC)
|
||||
|
||||
|
||||
# Generates the use of precompiled in a target,
|
||||
# without using depency targets (2 extra for each target)
|
||||
# Using Visual, must also add ${_targetName}_pch to sources
|
||||
# Not needed by Xcode
|
||||
|
||||
MACRO(GET_NATIVE_PRECOMPILED_HEADER _targetName _input)
|
||||
|
||||
if(CMAKE_GENERATOR MATCHES Visual*)
|
||||
|
||||
SET(_dummy_str "#include \"${_input}\"\n"
|
||||
"// This is required to suppress LNK4221. Very annoying.\n"
|
||||
"void *g_${_targetName}Dummy = 0\;\n")
|
||||
|
||||
# Use of cxx extension for generated files (as Qt does)
|
||||
SET(${_targetName}_pch ${CMAKE_CURRENT_BINARY_DIR}/${_targetName}_pch.cxx)
|
||||
if(EXISTS ${${_targetName}_pch})
|
||||
# Check if contents is the same, if not rewrite
|
||||
# todo
|
||||
else(EXISTS ${${_targetName}_pch})
|
||||
FILE(WRITE ${${_targetName}_pch} ${_dummy_str})
|
||||
endif(EXISTS ${${_targetName}_pch})
|
||||
endif(CMAKE_GENERATOR MATCHES Visual*)
|
||||
|
||||
ENDMACRO(GET_NATIVE_PRECOMPILED_HEADER)
|
||||
|
||||
|
||||
MACRO(ADD_NATIVE_PRECOMPILED_HEADER _targetName _input)
|
||||
|
||||
IF( "${ARGN}" STREQUAL "0")
|
||||
SET(_dowarn 0)
|
||||
ELSE( "${ARGN}" STREQUAL "0")
|
||||
SET(_dowarn 1)
|
||||
ENDIF("${ARGN}" STREQUAL "0")
|
||||
|
||||
if(CMAKE_GENERATOR MATCHES Visual*)
|
||||
# Auto include the precompile (useful for moc processing, since the use of
|
||||
# precompiled is specified at the target level
|
||||
# and I don't want to specifiy /F- for each moc/res/ui generated files (using Qt)
|
||||
|
||||
GET_TARGET_PROPERTY(oldProps ${_targetName} COMPILE_FLAGS)
|
||||
if (${oldProps} MATCHES NOTFOUND)
|
||||
SET(oldProps "")
|
||||
endif(${oldProps} MATCHES NOTFOUND)
|
||||
|
||||
SET(newProperties "${oldProps} /Yu\"${_input}\" /FI\"${_input}\"")
|
||||
SET_TARGET_PROPERTIES(${_targetName} PROPERTIES COMPILE_FLAGS "${newProperties}")
|
||||
|
||||
#also inlude ${oldProps} to have the same compile options
|
||||
SET_SOURCE_FILES_PROPERTIES(${${_targetName}_pch} PROPERTIES COMPILE_FLAGS "${oldProps} /Yc\"${_input}\"")
|
||||
|
||||
else(CMAKE_GENERATOR MATCHES Visual*)
|
||||
|
||||
if (CMAKE_GENERATOR MATCHES Xcode)
|
||||
# For Xcode, cmake needs my patch to process
|
||||
# GCC_PREFIX_HEADER and GCC_PRECOMPILE_PREFIX_HEADER as target properties
|
||||
|
||||
GET_TARGET_PROPERTY(oldProps ${_targetName} COMPILE_FLAGS)
|
||||
if (${oldProps} MATCHES NOTFOUND)
|
||||
SET(oldProps "")
|
||||
endif(${oldProps} MATCHES NOTFOUND)
|
||||
|
||||
# When buiding out of the tree, precompiled may not be located
|
||||
# Use full path instead.
|
||||
GET_FILENAME_COMPONENT(fullPath ${_input} ABSOLUTE)
|
||||
|
||||
SET_TARGET_PROPERTIES(${_targetName} PROPERTIES XCODE_ATTRIBUTE_GCC_PREFIX_HEADER "${fullPath}")
|
||||
SET_TARGET_PROPERTIES(${_targetName} PROPERTIES XCODE_ATTRIBUTE_GCC_PRECOMPILE_PREFIX_HEADER "YES")
|
||||
|
||||
else (CMAKE_GENERATOR MATCHES Xcode)
|
||||
|
||||
#Fallback to the "old" precompiled suppport
|
||||
#ADD_PRECOMPILED_HEADER(${_targetName} ${_input} ${_dowarn})
|
||||
endif(CMAKE_GENERATOR MATCHES Xcode)
|
||||
endif(CMAKE_GENERATOR MATCHES Visual*)
|
||||
|
||||
ENDMACRO(ADD_NATIVE_PRECOMPILED_HEADER)
|
||||
FUNCTION(ADD_CXX_PCH TARGET_NAME PCH_HEADER PCH_SOURCE)
|
||||
IF (MSVC)
|
||||
ADD_CXX_PCH_MSVC(${TARGET_NAME} ${PCH_HEADER} ${PCH_SOURCE})
|
||||
ELSEIF ("${CMAKE_GENERATOR}" MATCHES "Xcode")
|
||||
SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES
|
||||
XCODE_ATTRIBUTE_GCC_PRECOMPILE_PREFIX_HEADER YES
|
||||
XCODE_ATTRIBUTE_GCC_PREFIX_HEADER "${CMAKE_CURRENT_SOURCE_DIR}/${PCH_HEADER}"
|
||||
)
|
||||
ELSEIF ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
|
||||
ADD_CXX_PCH_CLANG(${TARGET_NAME} ${PCH_HEADER} ${PCH_SOURCE})
|
||||
ELSEIF ("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU")
|
||||
ADD_CXX_PCH_GCC(${TARGET_NAME} ${PCH_HEADER} ${PCH_SOURCE})
|
||||
ENDIF ()
|
||||
ENDFUNCTION(ADD_CXX_PCH)
|
||||
|
|
|
|||
|
|
@ -1,90 +0,0 @@
|
|||
# Locate Intel Threading Building Blocks include paths and libraries
|
||||
# CPPunit can be found at http://cppunit.sourceforge.net
|
||||
# Written by Michael Hammer, michael _at_ derhammer.net
|
||||
|
||||
# This module defines
|
||||
# TBB_INCLUDE_DIR, where to find ptlib.h, etc.
|
||||
# TBB_LIBRARIES, the libraries to link against to use pwlib.
|
||||
# TBB_FOUND, If false, don't try to use pwlib.
|
||||
|
||||
FIND_PATH(TBB_INCLUDE_DIR tbb/task_scheduler_init.h
|
||||
/usr/local/include
|
||||
/usr/include
|
||||
${TBB_ROOT}
|
||||
${TBB_ROOT}/include
|
||||
$ENV{TBB_ROOT}
|
||||
$ENV{TBB_ROOT}/include
|
||||
# ${CMAKE_SOURCE_DIR}/dep/tbb/include
|
||||
)
|
||||
|
||||
FIND_LIBRARY(TBB_LIBRARIES
|
||||
NAMES
|
||||
tbb
|
||||
PATHS
|
||||
/usr/local/lib
|
||||
/usr/lib
|
||||
${TBB_ROOT}
|
||||
${TBB_ROOT}/lib
|
||||
$ENV{TBB_ROOT}
|
||||
$ENV{TBB_ROOT}/lib
|
||||
# ${CMAKE_SOURCE_DIR}/dep/tbb/build/vsproject/ia32/Release
|
||||
)
|
||||
|
||||
FIND_LIBRARY(TBB_EXTRA_LIBRARIES
|
||||
NAMES
|
||||
tbbmalloc
|
||||
PATHS
|
||||
/usr/local/lib
|
||||
/usr/lib
|
||||
${TBB_ROOT}
|
||||
${TBB_ROOT}/lib
|
||||
$ENV{TBB_ROOT}
|
||||
$ENV{TBB_ROOT}/lib
|
||||
# ${CMAKE_SOURCE_DIR}/dep/tbb/build/vsproject/ia32/Release
|
||||
)
|
||||
|
||||
FIND_LIBRARY(TBB_LIBRARIES_DEBUG
|
||||
NAMES
|
||||
tbb_debug
|
||||
PATHS
|
||||
/usr/local/lib
|
||||
/usr/lib
|
||||
${TBB_ROOT}
|
||||
${TBB_ROOT}/lib
|
||||
$ENV{TBB_ROOT}
|
||||
$ENV{TBB_ROOT}/lib
|
||||
# ${CMAKE_SOURCE_DIR}/dep/tbb/build/vsproject/ia32/Debug
|
||||
)
|
||||
|
||||
FIND_LIBRARY(TBB_EXTRA_LIBRARIES_DEBUG
|
||||
NAMES
|
||||
tbbmalloc_debug
|
||||
PATHS
|
||||
/usr/local/lib
|
||||
/usr/lib
|
||||
${TBB_ROOT}
|
||||
${TBB_ROOT}/lib
|
||||
$ENV{TBB_ROOT}
|
||||
$ENV{TBB_ROOT}/lib
|
||||
# ${CMAKE_SOURCE_DIR}/dep/tbb/build/vsproject/ia32/Debug
|
||||
)
|
||||
|
||||
SET(TBB_FOUND 0)
|
||||
IF(TBB_INCLUDE_DIR)
|
||||
IF(TBB_LIBRARIES)
|
||||
SET(TBB_FOUND 1)
|
||||
MESSAGE(STATUS "Found Intel TBB")
|
||||
SET(TBB_LIBRARIES
|
||||
${TBB_LIBRARIES}
|
||||
${TBB_EXTRA_LIBRARIES}
|
||||
)
|
||||
ENDIF(TBB_LIBRARIES)
|
||||
ENDIF(TBB_INCLUDE_DIR)
|
||||
|
||||
MARK_AS_ADVANCED(
|
||||
TBB_INCLUDE_DIR
|
||||
TBB_LIBRARIES
|
||||
TBB_EXTRA_LIBRARIES
|
||||
TBB_LIBRARIES_DEBUG
|
||||
TBB_EXTRA_LIBRARIES_DEBUG
|
||||
)
|
||||
|
|
@ -20,24 +20,18 @@
|
|||
# add_dependencies(ace ACE_Project)
|
||||
# set_target_properties(ace PROPERTIES DEPENDS ACE_Project)
|
||||
|
||||
if(WIN32)
|
||||
set(ACE_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/dep/ACE_wrappers)
|
||||
set(ACE_LIBRARIES_DIR ${CMAKE_SOURCE_DIR}/dep/ACE_wrappers/lib)
|
||||
set(ACE_LIBRARIES optimized ACE debug ACEd)
|
||||
else()
|
||||
set(ACE_INCLUDE_DIR ${CMAKE_INSTALL_PREFIX}/include)
|
||||
set(ACE_LIBRARIES_DIR ${CMAKE_INSTALL_PREFIX}/lib)
|
||||
set(ACE_LIBRARIES ACE)
|
||||
endif()
|
||||
set(ACE_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/dep/acelite)
|
||||
set(ACE_LIBRARIES_DIR ${CMAKE_BINARY_DIR}/dep/acelite/ace)
|
||||
set(ACE_LIBRARIES optimized ACE debug ACE)
|
||||
|
||||
# Little Hack to remove the link warnings because of not found directories
|
||||
if(XCODE)
|
||||
foreach(DIR ${ACE_LIBRARIES_DIR})
|
||||
foreach(CONF ${CMAKE_CONFIGURATION_TYPES})
|
||||
file(MAKE_DIRECTORY ${DIR}/${CONF})
|
||||
endforeach(CONF)
|
||||
endforeach(DIR)
|
||||
endif()
|
||||
#if(XCODE)
|
||||
# foreach(DIR ${ACE_LIBRARIES_DIR})
|
||||
# foreach(CONF ${CMAKE_CONFIGURATION_TYPES})
|
||||
# file(MAKE_DIRECTORY ${DIR}/${CONF})
|
||||
# endforeach(CONF)
|
||||
# endforeach(DIR)
|
||||
#endif()
|
||||
|
||||
link_directories(
|
||||
${ACE_LIBRARIES_DIR}
|
||||
|
|
@ -45,12 +39,12 @@ link_directories(
|
|||
|
||||
set(HAVE_ACE_STACK_TRACE_H ON) # config.h.cmake
|
||||
|
||||
if(WIN32)
|
||||
foreach(DIR ${ACE_LIBRARIES_DIR})
|
||||
install(
|
||||
DIRECTORY ${DIR}/ DESTINATION ${LIBS_DIR}
|
||||
FILES_MATCHING PATTERN "*.dll*" #"*.${LIB_SUFFIX}*"
|
||||
PATTERN "pkgconfig" EXCLUDE
|
||||
)
|
||||
endforeach(DIR)
|
||||
endif()
|
||||
#if(WIN32)
|
||||
# foreach(DIR ${ACE_LIBRARIES_DIR})
|
||||
# install(
|
||||
# DIRECTORY ${DIR}/ DESTINATION ${LIBS_DIR}
|
||||
# FILES_MATCHING PATTERN "*.dll*" #"*.${LIB_SUFFIX}*"
|
||||
# PATTERN "pkgconfig" EXCLUDE
|
||||
# )
|
||||
# endforeach(DIR)
|
||||
#endif()
|
||||
|
|
|
|||
39
cmake/MacroMangosSourceGroup.cmake
Normal file
39
cmake/MacroMangosSourceGroup.cmake
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
macro(mangos_source_group
|
||||
sources)
|
||||
|
||||
# Group by location on disk
|
||||
source_group("Source Files" FILES CMakeLists.txt)
|
||||
|
||||
foreach(_SRC ${sources})
|
||||
get_filename_component(_SRC_EXT ${_SRC} EXT)
|
||||
if((${_SRC_EXT} MATCHES ".h") OR
|
||||
(${_SRC_EXT} MATCHES ".hpp") OR
|
||||
(${_SRC_EXT} MATCHES ".hh"))
|
||||
source_group("Header Files" FILES ${_SRC})
|
||||
else()
|
||||
source_group("Source Files" FILES ${_SRC})
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
unset(_SRC)
|
||||
unset(_SRC_EXT)
|
||||
endmacro()
|
||||
|
||||
macro(mangos_source_group_topic
|
||||
sources
|
||||
topic)
|
||||
|
||||
foreach(_SRC ${sources})
|
||||
get_filename_component(_SRC_EXT ${_SRC} EXT)
|
||||
if((${_SRC_EXT} MATCHES ".h") OR
|
||||
(${_SRC_EXT} MATCHES ".hpp") OR
|
||||
(${_SRC_EXT} MATCHES ".hh"))
|
||||
source_group("Header Files\\${topic}" FILES ${_SRC})
|
||||
else()
|
||||
source_group("Source Files\\${topic}" FILES ${_SRC})
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
unset(_SRC)
|
||||
unset(_SRC_EXT)
|
||||
endmacro()
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
Linux instructions
|
||||
------------------
|
||||
|
||||
1. install cmake
|
||||
2. cmake -i
|
||||
3. make
|
||||
4. ./ad
|
||||
Binary file not shown.
|
|
@ -1,36 +0,0 @@
|
|||
# This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS.
|
||||
#
|
||||
# This file is free software; as a special exception the author gives
|
||||
# unlimited permission to copy and/or distribute it, with or without
|
||||
# modifications, as long as this notice is preserved.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
||||
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
Copy the content of this directory into your client directory.
|
||||
|
||||
Then just run ExtractResources.sh
|
||||
On Windows, you can run the file within the "Git bash" (which should be shipped with your Git software)
|
||||
by invoking "sh ExtractResources.sh"
|
||||
|
||||
This file will ask you what you want to extract.
|
||||
|
||||
You can chose from the following:
|
||||
* Extract DBCs/ maps (required for MaNGOS to work)
|
||||
* Extract vmaps (expected for MaNGOS to work)
|
||||
* Extract mmaps (optional, and will require very long time to create)
|
||||
* Update mmaps with data from offmesh.txt (suggested after updates of this file)
|
||||
|
||||
In case you want to extract mmaps you will be asked how many processes should be used for mmap-extraction;
|
||||
Recommanded is to use the number of CPUs
|
||||
|
||||
By default the scripts will create log files
|
||||
MaNGOSExtractor.log for overall progress of the extraction, and
|
||||
MaNGOSExtractor_detailed.log which includes all the information about the extraction.
|
||||
|
||||
If you want to toggle some parts in the extraction process, there are a few internal variables in the extraction scripts, that can be modified.
|
||||
|
||||
Consider the Readme's in the directories extractor, vmap_assembler, vmap_extractor and mmap for further information about detail.
|
||||
|
||||
Also especially related to mmaps updating you might be interested in using the MoveMapGen.sh script.
|
||||
Binary file not shown.
|
|
@ -1,46 +0,0 @@
|
|||
@echo off
|
||||
cls
|
||||
echo.
|
||||
echo Welcome to the vmaps extractor and assembler
|
||||
echo.
|
||||
echo You need 2GB of free space in disk, CTRL+C to stop process
|
||||
echo Hit Enter to start . . .
|
||||
pause>nul
|
||||
cls
|
||||
echo.
|
||||
echo.
|
||||
echo.
|
||||
IF EXIST buildings\dir (ECHO The buildings folder already exist do you want to delete it?
|
||||
echo If YES hit Enter to continue if no CLOSE the program now! . . .
|
||||
pause>nul
|
||||
DEL /S /Q buildings)
|
||||
vmapExtractor.exe
|
||||
cls
|
||||
echo.
|
||||
echo.
|
||||
echo.
|
||||
IF NOT %ERRORLEVEL% LEQ 1 (echo The vmap extract tool finalized with errors.
|
||||
echo Hit Enter to continue . . .
|
||||
pause>nul)
|
||||
cls
|
||||
echo.
|
||||
echo.
|
||||
echo.
|
||||
echo Vmaps extracted check log.txt for errors, now it's time to assemble the vmaps press any key to continue . . .
|
||||
pause>nul
|
||||
md vmaps
|
||||
vmap_assembler.exe buildings vmaps
|
||||
cls
|
||||
echo.
|
||||
echo.
|
||||
echo.
|
||||
IF NOT %ERRORLEVEL% LEQ 1 (echo The vmap assembler tool finalized with errors.
|
||||
echo Hit Enter to continue . . .
|
||||
pause>nul)
|
||||
cls
|
||||
echo.
|
||||
echo.
|
||||
echo.
|
||||
echo Process done! copy vmaps folder to the MaNGOS main directory
|
||||
echo Press any key to exit . . .
|
||||
pause>nul
|
||||
Binary file not shown.
Binary file not shown.
|
|
@ -1,178 +0,0 @@
|
|||
# This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS.
|
||||
#
|
||||
# This file is free software; as a special exception the author gives
|
||||
# unlimited permission to copy and/or distribute it, with or without
|
||||
# modifications, as long as this notice is preserved.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
||||
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
cmake_minimum_required (VERSION 2.8)
|
||||
|
||||
project( MoveMapGen )
|
||||
|
||||
ADD_DEFINITIONS(-DMMAP_GENERATOR -DNO_CORE_FUNCS -DDEBUG)
|
||||
|
||||
# zlib
|
||||
ADD_DEFINITIONS( -DNO_vsnprintf )
|
||||
|
||||
ADD_DEFINITIONS("-ggdb")
|
||||
ADD_DEFINITIONS("-O3")
|
||||
|
||||
include_directories(
|
||||
../../src
|
||||
../../src/shared
|
||||
../../src/game
|
||||
../../src/game/vmap
|
||||
../../dep/include/g3dlite
|
||||
../../dep/ACE_wrappers
|
||||
../../objdir/dep/ACE_wrappers
|
||||
../../src/framework
|
||||
../../dep/recastnavigation/Detour/Include
|
||||
../../dep/recastnavigation/Recast/Include
|
||||
../../dep/src/zlib
|
||||
)
|
||||
|
||||
add_library(zlib
|
||||
../../dep/src/zlib/adler32.c
|
||||
../../dep/src/zlib/compress.c
|
||||
../../dep/src/zlib/crc32.c
|
||||
../../dep/src/zlib/deflate.c
|
||||
../../dep/src/zlib/example.c
|
||||
../../dep/src/zlib/gzio.c
|
||||
../../dep/src/zlib/infback.c
|
||||
../../dep/src/zlib/inffast.c
|
||||
../../dep/src/zlib/inflate.c
|
||||
../../dep/src/zlib/inftrees.c
|
||||
../../dep/src/zlib/trees.c
|
||||
../../dep/src/zlib/uncompr.c
|
||||
../../dep/src/zlib/zutil.c
|
||||
)
|
||||
|
||||
add_library(g3dlite
|
||||
../../dep/src/g3dlite/AABox.cpp
|
||||
../../dep/src/g3dlite/Any.cpp
|
||||
../../dep/src/g3dlite/AnyVal.cpp
|
||||
../../dep/src/g3dlite/AreaMemoryManager.cpp
|
||||
../../dep/src/g3dlite/BinaryFormat.cpp
|
||||
../../dep/src/g3dlite/BinaryInput.cpp
|
||||
../../dep/src/g3dlite/BinaryOutput.cpp
|
||||
../../dep/src/g3dlite/Box.cpp
|
||||
../../dep/src/g3dlite/Box2D.cpp
|
||||
../../dep/src/g3dlite/BumpMapPreprocess.cpp
|
||||
../../dep/src/g3dlite/Capsule.cpp
|
||||
../../dep/src/g3dlite/CollisionDetection.cpp
|
||||
../../dep/src/g3dlite/Color1.cpp
|
||||
../../dep/src/g3dlite/Color1uint8.cpp
|
||||
../../dep/src/g3dlite/Color3.cpp
|
||||
../../dep/src/g3dlite/Color3uint8.cpp
|
||||
../../dep/src/g3dlite/Color4.cpp
|
||||
../../dep/src/g3dlite/Color4uint8.cpp
|
||||
../../dep/src/g3dlite/Cone.cpp
|
||||
../../dep/src/g3dlite/constants.cpp
|
||||
../../dep/src/g3dlite/ConvexPolyhedron.cpp
|
||||
../../dep/src/g3dlite/CoordinateFrame.cpp
|
||||
../../dep/src/g3dlite/Crypto.cpp
|
||||
../../dep/src/g3dlite/Crypto_md5.cpp
|
||||
../../dep/src/g3dlite/Cylinder.cpp
|
||||
../../dep/src/g3dlite/debugAssert.cpp
|
||||
../../dep/src/g3dlite/FileSystem.cpp
|
||||
../../dep/src/g3dlite/fileutils.cpp
|
||||
../../dep/src/g3dlite/filter.cpp
|
||||
../../dep/src/g3dlite/format.cpp
|
||||
../../dep/src/g3dlite/g3dfnmatch.cpp
|
||||
../../dep/src/g3dlite/g3dmath.cpp
|
||||
../../dep/src/g3dlite/GCamera.cpp
|
||||
../../dep/src/g3dlite/GLight.cpp
|
||||
../../dep/src/g3dlite/GThread.cpp
|
||||
../../dep/src/g3dlite/GUniqueID.cpp
|
||||
../../dep/src/g3dlite/Intersect.cpp
|
||||
../../dep/src/g3dlite/license.cpp
|
||||
../../dep/src/g3dlite/Line.cpp
|
||||
../../dep/src/g3dlite/LineSegment.cpp
|
||||
../../dep/src/g3dlite/Log.cpp
|
||||
../../dep/src/g3dlite/Matrix.cpp
|
||||
../../dep/src/g3dlite/Matrix3.cpp
|
||||
../../dep/src/g3dlite/Matrix4.cpp
|
||||
../../dep/src/g3dlite/MemoryManager.cpp
|
||||
../../dep/src/g3dlite/MeshAlg.cpp
|
||||
../../dep/src/g3dlite/MeshAlgAdjacency.cpp
|
||||
../../dep/src/g3dlite/MeshAlgWeld.cpp
|
||||
../../dep/src/g3dlite/MeshBuilder.cpp
|
||||
../../dep/src/g3dlite/NetAddress.cpp
|
||||
../../dep/src/g3dlite/NetworkDevice.cpp
|
||||
../../dep/src/g3dlite/PhysicsFrame.cpp
|
||||
../../dep/src/g3dlite/Plane.cpp
|
||||
../../dep/src/g3dlite/PrecomputedRandom.cpp
|
||||
../../dep/src/g3dlite/prompt.cpp
|
||||
../../dep/src/g3dlite/Quat.cpp
|
||||
../../dep/src/g3dlite/Random.cpp
|
||||
../../dep/src/g3dlite/Ray.cpp
|
||||
../../dep/src/g3dlite/Rect2D.cpp
|
||||
../../dep/src/g3dlite/ReferenceCount.cpp
|
||||
../../dep/src/g3dlite/RegistryUtil.cpp
|
||||
../../dep/src/g3dlite/Sphere.cpp
|
||||
../../dep/src/g3dlite/SplineBase.cpp
|
||||
../../dep/src/g3dlite/stringutils.cpp
|
||||
../../dep/src/g3dlite/System.cpp
|
||||
../../dep/src/g3dlite/TextInput.cpp
|
||||
../../dep/src/g3dlite/TextOutput.cpp
|
||||
../../dep/src/g3dlite/ThreadSet.cpp
|
||||
../../dep/src/g3dlite/Triangle.cpp
|
||||
../../dep/src/g3dlite/uint128.cpp
|
||||
../../dep/src/g3dlite/UprightFrame.cpp
|
||||
../../dep/src/g3dlite/Vector2.cpp
|
||||
../../dep/src/g3dlite/Vector2int16.cpp
|
||||
../../dep/src/g3dlite/Vector3.cpp
|
||||
../../dep/src/g3dlite/Vector3int16.cpp
|
||||
../../dep/src/g3dlite/Vector3int32.cpp
|
||||
../../dep/src/g3dlite/Vector4.cpp
|
||||
../../dep/src/g3dlite/Vector4int8.cpp
|
||||
../../dep/src/g3dlite/Welder.cpp
|
||||
../../dep/src/g3dlite/WinMain.cpp
|
||||
)
|
||||
|
||||
add_library(vmap
|
||||
../../src/game/vmap/BIH.cpp
|
||||
../../src/game/vmap/VMapManager2.cpp
|
||||
../../src/game/vmap/MapTree.cpp
|
||||
../../src/game/vmap/TileAssembler.cpp
|
||||
../../src/game/vmap/WorldModel.cpp
|
||||
../../src/game/vmap/ModelInstance.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(vmap g3dlite zlib)
|
||||
|
||||
add_library(Detour
|
||||
../../dep/recastnavigation/Detour/Source/DetourAlloc.cpp
|
||||
../../dep/recastnavigation/Detour/Source/DetourCommon.cpp
|
||||
../../dep/recastnavigation/Detour/Source/DetourNavMesh.cpp
|
||||
../../dep/recastnavigation/Detour/Source/DetourNavMeshBuilder.cpp
|
||||
../../dep/recastnavigation/Detour/Source/DetourNavMeshQuery.cpp
|
||||
../../dep/recastnavigation/Detour/Source/DetourNode.cpp
|
||||
)
|
||||
|
||||
add_library(Recast
|
||||
../../dep/recastnavigation/Recast/Source/Recast.cpp
|
||||
../../dep/recastnavigation/Recast/Source/RecastAlloc.cpp
|
||||
../../dep/recastnavigation/Recast/Source/RecastArea.cpp
|
||||
../../dep/recastnavigation/Recast/Source/RecastContour.cpp
|
||||
../../dep/recastnavigation/Recast/Source/RecastFilter.cpp
|
||||
../../dep/recastnavigation/Recast/Source/RecastMesh.cpp
|
||||
../../dep/recastnavigation/Recast/Source/RecastMeshDetail.cpp
|
||||
../../dep/recastnavigation/Recast/Source/RecastRasterization.cpp
|
||||
../../dep/recastnavigation/Recast/Source/RecastRegion.cpp
|
||||
)
|
||||
|
||||
set(SOURCES
|
||||
./src/IntermediateValues.cpp
|
||||
./src/generator.cpp
|
||||
./src/MapBuilder.cpp
|
||||
./src/TerrainBuilder.cpp
|
||||
./src/VMapExtensions.cpp
|
||||
)
|
||||
|
||||
add_executable( MoveMapGen ${SOURCES} )
|
||||
|
||||
target_link_libraries( MoveMapGen g3dlite vmap Detour Recast zlib )
|
||||
|
|
@ -1,66 +0,0 @@
|
|||
Generator command line args
|
||||
|
||||
--offMeshInput [file.*] Path to file containing off mesh connections data.
|
||||
Format must be: (see offmesh_example.txt)
|
||||
"map_id tile_x,tile_y (start_x start_y start_z) (end_x end_y end_z) size //optional comments"
|
||||
Single mesh connection per line.
|
||||
|
||||
--silent Make us script friendly. Do not wait for user input
|
||||
on error or completion.
|
||||
|
||||
--bigBaseUnit [true|false] Generate tile/map using bigger basic unit.
|
||||
Use this option only if you have unexpected gaps.
|
||||
|
||||
false: use normal metrics (default)
|
||||
|
||||
--maxAngle [#] Max walkable inclination angle
|
||||
|
||||
float between 45 and 90 degrees (default 60)
|
||||
|
||||
--skipLiquid liquid data for maps
|
||||
|
||||
false: include liquid data (default)
|
||||
|
||||
--skipContinents [true|false] continents are maps 0 (Eastern Kingdoms),
|
||||
1 (Kalimdor), 530 (Outlands), 571 (Northrend)
|
||||
|
||||
false: build continents (default)
|
||||
|
||||
--skipJunkMaps [true|false] junk maps include some unused
|
||||
maps, transport maps, and some other
|
||||
|
||||
true: skip junk maps (default)
|
||||
|
||||
--skipBattlegrounds [true|false] does not include PVP arenas
|
||||
|
||||
false: skip battlegrounds (default)
|
||||
|
||||
--debugOutput [true|false] create debugging files for use with RecastDemo
|
||||
if you are only creating mmaps for use with MaNGOS,
|
||||
you don't want debugging files
|
||||
|
||||
false: don't create debugging files (default)
|
||||
|
||||
--tile [#,#] Build the specified tile
|
||||
seperate number with a comma ','
|
||||
must specify a map number (see below)
|
||||
if this option is not used, all tiles are built
|
||||
|
||||
[#] Build only the map specified by #
|
||||
this command will build the map regardless of --skip* option settings
|
||||
if you do not specify a map number, builds all maps that pass the filters specified by --skip* options
|
||||
|
||||
|
||||
examples:
|
||||
|
||||
movemapgen
|
||||
builds maps using the default settings (see above for defaults)
|
||||
|
||||
movemapgen --skipContinents true
|
||||
builds the default maps, except continents
|
||||
|
||||
movemapgen 0
|
||||
builds all tiles of map 0
|
||||
|
||||
movemapgen 0 --tile 34,46
|
||||
builds only tile 34,46 of map 0 (this is the southern face of blackrock mountain)
|
||||
|
|
@ -1,89 +0,0 @@
|
|||
# This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS.
|
||||
#
|
||||
# This file is free software; as a special exception the author gives
|
||||
# unlimited permission to copy and/or distribute it, with or without
|
||||
# modifications, as long as this notice is preserved.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
||||
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
cmake_minimum_required (VERSION 2.8)
|
||||
|
||||
project (MANGOS_VMAP_ASSEMB_IO)
|
||||
|
||||
# uncomment next line to disable debug mode
|
||||
ADD_DEFINITIONS("-DIOMAP_DEBUG")
|
||||
ADD_DEFINITIONS("-DNO_CORE_FUNCS")
|
||||
|
||||
ADD_DEFINITIONS("-Wall")
|
||||
ADD_DEFINITIONS("-ggdb")
|
||||
ADD_DEFINITIONS("-O3")
|
||||
|
||||
include_directories(../../src/shared)
|
||||
include_directories(../../src/game/vmap/)
|
||||
include_directories(../../dep/include/g3dlite/)
|
||||
include_directories(../../dep/ACE_wrappers/)
|
||||
include_directories(../../objdir/dep/ACE_wrappers)
|
||||
include_directories(../../src/framework/)
|
||||
|
||||
add_library(g3dlite
|
||||
../../dep/src/g3dlite/AABox.cpp
|
||||
../../dep/src/g3dlite/Box.cpp
|
||||
../../dep/src/g3dlite/Crypto.cpp
|
||||
../../dep/src/g3dlite/FileSystem.cpp
|
||||
../../dep/src/g3dlite/format.cpp
|
||||
../../dep/src/g3dlite/Matrix3.cpp
|
||||
../../dep/src/g3dlite/Plane.cpp
|
||||
../../dep/src/g3dlite/System.cpp
|
||||
../../dep/src/g3dlite/Triangle.cpp
|
||||
../../dep/src/g3dlite/Vector3.cpp
|
||||
../../dep/src/g3dlite/Vector4.cpp
|
||||
../../dep/src/g3dlite/debugAssert.cpp
|
||||
../../dep/src/g3dlite/fileutils.cpp
|
||||
../../dep/src/g3dlite/g3dmath.cpp
|
||||
../../dep/src/g3dlite/g3dfnmatch.cpp
|
||||
../../dep/src/g3dlite/prompt.cpp
|
||||
../../dep/src/g3dlite/stringutils.cpp
|
||||
../../dep/src/g3dlite/Any.cpp
|
||||
../../dep/src/g3dlite/BinaryFormat.cpp
|
||||
../../dep/src/g3dlite/BinaryInput.cpp
|
||||
../../dep/src/g3dlite/BinaryOutput.cpp
|
||||
../../dep/src/g3dlite/Capsule.cpp
|
||||
../../dep/src/g3dlite/CollisionDetection.cpp
|
||||
../../dep/src/g3dlite/CoordinateFrame.cpp
|
||||
../../dep/src/g3dlite/Cylinder.cpp
|
||||
../../dep/src/g3dlite/Line.cpp
|
||||
../../dep/src/g3dlite/LineSegment.cpp
|
||||
../../dep/src/g3dlite/Log.cpp
|
||||
../../dep/src/g3dlite/Matrix4.cpp
|
||||
../../dep/src/g3dlite/MemoryManager.cpp
|
||||
../../dep/src/g3dlite/Quat.cpp
|
||||
../../dep/src/g3dlite/PhysicsFrame.cpp
|
||||
../../dep/src/g3dlite/Random.cpp
|
||||
../../dep/src/g3dlite/Ray.cpp
|
||||
../../dep/src/g3dlite/ReferenceCount.cpp
|
||||
../../dep/src/g3dlite/Sphere.cpp
|
||||
../../dep/src/g3dlite/TextInput.cpp
|
||||
../../dep/src/g3dlite/TextOutput.cpp
|
||||
../../dep/src/g3dlite/uint128.cpp
|
||||
../../dep/src/g3dlite/UprightFrame.cpp
|
||||
../../dep/src/g3dlite/Vector2.cpp
|
||||
)
|
||||
|
||||
add_library(vmap
|
||||
../../src/game/vmap/BIH.cpp
|
||||
../../src/game/vmap/VMapManager2.cpp
|
||||
../../src/game/vmap/MapTree.cpp
|
||||
../../src/game/vmap/TileAssembler.cpp
|
||||
../../src/game/vmap/WorldModel.cpp
|
||||
../../src/game/vmap/ModelInstance.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(vmap g3dlite z)
|
||||
|
||||
add_executable(vmap_assembler vmap_assembler.cpp)
|
||||
target_link_libraries(vmap_assembler vmap)
|
||||
|
||||
# add_executable(vmap_test coordinate_test.cpp)
|
||||
# target_link_libraries(vmap_test vmap)
|
||||
|
|
@ -1,46 +0,0 @@
|
|||
Linux:
|
||||
|
||||
1. Building
|
||||
|
||||
cd to contrib/vmap_assembler/ and execute:
|
||||
|
||||
$ cmake .
|
||||
$ make
|
||||
|
||||
You should now have an executable file vmap_assembler
|
||||
|
||||
2. Assembling vmaps
|
||||
|
||||
Use the created executable to create the vmap files for MaNGOS.
|
||||
The executable takes two arguments:
|
||||
|
||||
vmap_assembler <input_dir> <output_dir>
|
||||
|
||||
Example:
|
||||
$ ./vmap_assembler Buildings vmaps
|
||||
|
||||
<output_dir> has to exist already and shall be empty.
|
||||
The resulting files in <output_dir> are expected to be found in ${DataDir}/vmaps
|
||||
by mangos-worldd (DataDir is set in mangosd.conf).
|
||||
|
||||
###########################
|
||||
Windows:
|
||||
|
||||
1. Building
|
||||
|
||||
Build the solution in contrib\vmap_assembler\
|
||||
Resulting binaries will be in contrib\vmap_assembler\bin\$(PlatformName)_$(ConfigurationName)\
|
||||
|
||||
2. Assembling vmaps
|
||||
|
||||
Use the created executable (from command prompt) to create the vmap files for MaNGOS.
|
||||
The executable takes two arguments:
|
||||
|
||||
vmap_assembler.exe <input_dir> <output_dir>
|
||||
|
||||
Example:
|
||||
C:\my_data_dir\> vmap_assembler.exe Buildings vmaps
|
||||
|
||||
<output_dir> has to exist already and shall be empty.
|
||||
The resulting files in <output_dir> are expected to be found in ${DataDir}\vmaps
|
||||
by mangos-worldd (DataDir is set in mangosd.conf).
|
||||
|
|
@ -1,42 +0,0 @@
|
|||
Linux:
|
||||
|
||||
1. Building
|
||||
|
||||
Because vmap_extractor depends on libmpq for reading mpq files, you will have
|
||||
to build libmpq prior to vmap_extractor. Therefore cd to dep/StormLib and execute:
|
||||
|
||||
$ ./autogen.sh
|
||||
$ ./configure
|
||||
$ make
|
||||
|
||||
After that, cd to contrib/vmap_extractor/ and execute:
|
||||
|
||||
$ cmake .
|
||||
$ make
|
||||
|
||||
You should now have an executable file at vmapextract/vmapextractor
|
||||
|
||||
2. Extracting
|
||||
|
||||
Use the created executable to extract model information. Change the data path if
|
||||
needed.
|
||||
|
||||
$ vmapextract/vmapextractor -d /mnt/windows/games/wow/Data/
|
||||
|
||||
Resulting files will be in ./Buildings
|
||||
|
||||
###########################
|
||||
Windows:
|
||||
|
||||
1. Building
|
||||
|
||||
Just build the solution in contrib\vmap_extractor\win
|
||||
Resulting binaries will be in contrib\vmap_extractor\bin\$(PlatformName)_$(ConfigurationName)
|
||||
|
||||
2. Extracting
|
||||
|
||||
Use the created executable (from command prompt) to extract model information.
|
||||
It should find the data path for your client installation through the windows registry,
|
||||
but the data path can be specified with the -d option.
|
||||
|
||||
Resulting files will be in .\Buildings
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,32 +0,0 @@
|
|||
// $Id: ACE.mwc 86476 2009-08-13 03:27:23Z elliott_c $
|
||||
workspace {
|
||||
exclude(automake) {
|
||||
build
|
||||
}
|
||||
exclude {
|
||||
TAO
|
||||
}
|
||||
|
||||
// The associate scope does not add directories to the workspace;
|
||||
// it only associates a name with one or more directories.
|
||||
associate(examples) {
|
||||
examples
|
||||
}
|
||||
associate(tests) {
|
||||
performance-tests
|
||||
tests
|
||||
}
|
||||
associate(gperf) {
|
||||
gperf
|
||||
}
|
||||
|
||||
// The '--' is a special key that indicates that the associated
|
||||
// projects should be of the form @NAME@ in the generated Makefile.am.
|
||||
associate(--) {
|
||||
ACEXML
|
||||
ASNMP
|
||||
protocols
|
||||
KOKYU
|
||||
TAO
|
||||
}
|
||||
}
|
||||
|
|
@ -1,111 +0,0 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||
# Visual Studio 2010
|
||||
# $Id: VC10WorkspaceCreator.pm 1890 2010-08-24 19:48:23Z mitza $
|
||||
#
|
||||
# This file was generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
# MPC Command:
|
||||
# /tmp/DOC_ROOT/stage-1367/ACE_wrappers/bin/mwc.pl -type vc10 -recurse -hierarchy -relative ACE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ACE", "ace\ACE_vc10.vcxproj", "{47BC56ED-FECA-1BAD-6757-8A6300006755}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ACE_ETCL_Parser", "ace\ETCL\ACE_ETCL_Parser_vc10.vcxproj", "{42B1A787-FECA-1BAD-007E-8A67757B007A}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755} = {47BC56ED-FECA-1BAD-6757-8A6300006755}
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A} = {17692659-FECA-1BAD-007E-8A67757B007A}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ACE_ETCL", "ace\ETCL\ACE_ETCL_vc10.vcxproj", "{17692659-FECA-1BAD-007E-8A67757B007A}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755} = {47BC56ED-FECA-1BAD-6757-8A6300006755}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Monitor_Control", "ace\Monitor_Control\Monitor_Control_vc10.vcxproj", "{7153B6F4-FECA-1BAD-D619-74620E01B14C}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755} = {47BC56ED-FECA-1BAD-6757-8A6300006755}
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A} = {17692659-FECA-1BAD-007E-8A67757B007A}
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A} = {42B1A787-FECA-1BAD-007E-8A67757B007A}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "QoS", "ace\QoS\QoS_vc10.vcxproj", "{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755} = {47BC56ED-FECA-1BAD-6757-8A6300006755}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PerlACE", "bin\PerlACE\PerlACE_vc10.vcxproj", "{47B934A1-FECA-1BAD-A757-FC47A624E189}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bin", "bin\bin_vc10.vcxproj", "{5F0C56EF-FECA-1BAD-64FC-8A63000064FE}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755} = {47BC56ED-FECA-1BAD-6757-8A6300006755}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
Debug|x64 = Debug|x64
|
||||
Release|Win32 = Release|Win32
|
||||
Release|x64 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755}.Debug|x64.Build.0 = Debug|x64
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755}.Release|Win32.Build.0 = Release|Win32
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755}.Release|x64.ActiveCfg = Release|x64
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755}.Release|x64.Build.0 = Release|x64
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A}.Debug|x64.Build.0 = Debug|x64
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A}.Release|Win32.Build.0 = Release|Win32
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A}.Release|x64.ActiveCfg = Release|x64
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A}.Release|x64.Build.0 = Release|x64
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A}.Debug|x64.Build.0 = Debug|x64
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A}.Release|Win32.Build.0 = Release|Win32
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A}.Release|x64.ActiveCfg = Release|x64
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A}.Release|x64.Build.0 = Release|x64
|
||||
{7153B6F4-FECA-1BAD-D619-74620E01B14C}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{7153B6F4-FECA-1BAD-D619-74620E01B14C}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{7153B6F4-FECA-1BAD-D619-74620E01B14C}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{7153B6F4-FECA-1BAD-D619-74620E01B14C}.Debug|x64.Build.0 = Debug|x64
|
||||
{7153B6F4-FECA-1BAD-D619-74620E01B14C}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{7153B6F4-FECA-1BAD-D619-74620E01B14C}.Release|Win32.Build.0 = Release|Win32
|
||||
{7153B6F4-FECA-1BAD-D619-74620E01B14C}.Release|x64.ActiveCfg = Release|x64
|
||||
{7153B6F4-FECA-1BAD-D619-74620E01B14C}.Release|x64.Build.0 = Release|x64
|
||||
{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}.Debug|x64.Build.0 = Debug|x64
|
||||
{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}.Release|Win32.Build.0 = Release|Win32
|
||||
{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}.Release|x64.ActiveCfg = Release|x64
|
||||
{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}.Release|x64.Build.0 = Release|x64
|
||||
{47B934A1-FECA-1BAD-A757-FC47A624E189}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{47B934A1-FECA-1BAD-A757-FC47A624E189}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{47B934A1-FECA-1BAD-A757-FC47A624E189}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{47B934A1-FECA-1BAD-A757-FC47A624E189}.Debug|x64.Build.0 = Debug|x64
|
||||
{47B934A1-FECA-1BAD-A757-FC47A624E189}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{47B934A1-FECA-1BAD-A757-FC47A624E189}.Release|Win32.Build.0 = Release|Win32
|
||||
{47B934A1-FECA-1BAD-A757-FC47A624E189}.Release|x64.ActiveCfg = Release|x64
|
||||
{47B934A1-FECA-1BAD-A757-FC47A624E189}.Release|x64.Build.0 = Release|x64
|
||||
{5F0C56EF-FECA-1BAD-64FC-8A63000064FE}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{5F0C56EF-FECA-1BAD-64FC-8A63000064FE}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{5F0C56EF-FECA-1BAD-64FC-8A63000064FE}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{5F0C56EF-FECA-1BAD-64FC-8A63000064FE}.Debug|x64.Build.0 = Debug|x64
|
||||
{5F0C56EF-FECA-1BAD-64FC-8A63000064FE}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{5F0C56EF-FECA-1BAD-64FC-8A63000064FE}.Release|Win32.Build.0 = Release|Win32
|
||||
{5F0C56EF-FECA-1BAD-64FC-8A63000064FE}.Release|x64.ActiveCfg = Release|x64
|
||||
{5F0C56EF-FECA-1BAD-64FC-8A63000064FE}.Release|x64.Build.0 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
|
@ -1,41 +0,0 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||
# Visual Studio 2010
|
||||
# $Id: VC10WorkspaceCreator.pm 1890 2010-08-24 19:48:23Z mitza $
|
||||
#
|
||||
# This file was generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
# MPC Command:
|
||||
# /tmp/DOC_ROOT/stage-1367/ACE_wrappers/bin/mwc.pl -type vc10 -recurse -hierarchy -relative ACE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers -relative TAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO -relative CIAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/CIAO -relative DANCE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/DAnCE -name_modifier "*_vc10"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ACE", "ace\ACE_vc10.vcxproj", "{47BC56ED-FECA-1BAD-6757-8A6300006755}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
Debug|x64 = Debug|x64
|
||||
Release|Win32 = Release|Win32
|
||||
Release|x64 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755}.Debug|x64.Build.0 = Debug|x64
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755}.Release|Win32.Build.0 = Release|Win32
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755}.Release|x64.ActiveCfg = Release|x64
|
||||
{47BC56ED-FECA-1BAD-6757-8A6300006755}.Release|x64.Build.0 = Release|x64
|
||||
{348C50EF-FECA-1BAD-6244-8A036423F5D3}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{348C50EF-FECA-1BAD-6244-8A036423F5D3}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{348C50EF-FECA-1BAD-6244-8A036423F5D3}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{348C50EF-FECA-1BAD-6244-8A036423F5D3}.Debug|x64.Build.0 = Debug|x64
|
||||
{348C50EF-FECA-1BAD-6244-8A036423F5D3}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{348C50EF-FECA-1BAD-6244-8A036423F5D3}.Release|Win32.Build.0 = Release|Win32
|
||||
{348C50EF-FECA-1BAD-6244-8A036423F5D3}.Release|x64.ActiveCfg = Release|x64
|
||||
{348C50EF-FECA-1BAD-6244-8A036423F5D3}.Release|x64.Build.0 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
|
@ -1,75 +0,0 @@
|
|||
#
|
||||
# This file is part of the MaNGOS Project. See AUTHORS file for Copyright information
|
||||
#
|
||||
# This program 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 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program 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 this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#
|
||||
|
||||
include(ExternalProject)
|
||||
|
||||
if(WIN32)
|
||||
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/ace/config.h.win ${CMAKE_CURRENT_SOURCE_DIR}/ace/config.h)
|
||||
endif()
|
||||
|
||||
if(WIN32 AND MSVC)
|
||||
# VS100 uses MSBuild.exe instead of devenv.com, so force it to use devenv.com
|
||||
if(VS100_FOUND)
|
||||
set(ACE_BUILD_TOOL ${VS100_DIR}/devenv.com)
|
||||
else()
|
||||
set(ACE_BUILD_TOOL ${CMAKE_BUILD_TOOL})
|
||||
endif()
|
||||
|
||||
if(PLATFORM MATCHES X86)
|
||||
set(ACE_CONFIGURATION Win32)
|
||||
else()
|
||||
set(ACE_CONFIGURATION x64)
|
||||
endif()
|
||||
|
||||
ExternalProject_Add(ACE_Project
|
||||
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}
|
||||
BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}
|
||||
INSTALL_DIR ${CMAKE_INSTALL_PREFIX}
|
||||
DOWNLOAD_COMMAND ""
|
||||
CONFIGURE_COMMAND ""
|
||||
BUILD_COMMAND ""
|
||||
INSTALL_COMMAND ""
|
||||
)
|
||||
ExternalProject_Add_Step(ACE_Project ACE_Upgrade
|
||||
COMMAND ${ACE_BUILD_TOOL} <SOURCE_DIR>\\ace\\ace_vc8.sln /upgrade
|
||||
ALWAYS 0
|
||||
)
|
||||
ExternalProject_Add_Step(ACE_Project ACE_Build
|
||||
DEPENDEES ACE_Upgrade
|
||||
COMMAND ${ACE_BUILD_TOOL} <SOURCE_DIR>\\ace\\ace_vc8.sln /project ACE /build ${CMAKE_BUILD_TYPE}|${ACE_CONFIGURATION}
|
||||
ALWAYS 0
|
||||
)
|
||||
elseif(UNIX)
|
||||
if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
|
||||
# ACE Won't build on FreeBSD 10 with the exceptions test enabled so we're just turning that test off
|
||||
set(DISABLE_EXCEPTIONS "--enable-exceptions=no")
|
||||
else()
|
||||
set(DISABLE_EXCEPTIONS "")
|
||||
endif()
|
||||
ExternalProject_Add(ACE_Project
|
||||
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}
|
||||
BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}
|
||||
INSTALL_DIR ${CMAKE_INSTALL_PREFIX}
|
||||
DOWNLOAD_COMMAND ""
|
||||
CONFIGURE_COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/configure --prefix=${CMAKE_INSTALL_PREFIX} --disable-ssl ${DISABLE_EXCEPTIONS}
|
||||
)
|
||||
else()
|
||||
message(FATAL_ERROR
|
||||
"This script doesn't support your system configuration to compile/install ACE."
|
||||
)
|
||||
endif()
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,101 +0,0 @@
|
|||
# -*- makefile -*-
|
||||
#----------------------------------------------------------------------------
|
||||
# GNU ACE Workspace
|
||||
#
|
||||
# $Id: GNUACEWorkspaceCreator.pm 91813 2010-09-17 07:52:52Z johnnyw $
|
||||
#
|
||||
# This file was generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
# MPC Command:
|
||||
# /tmp/DOC_ROOT/stage-1367/ACE_wrappers/bin/mwc.pl -type gnuace -exclude "TAO/TAO_*.mwc,TAO/CIAO/CIAO_*.mwc" -recurse -hierarchy -relative ACE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers -relative TAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO -relative CIAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/CIAO -relative DANCE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/DAnCE
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
MAKEFILE = GNUmakefile
|
||||
|
||||
ifeq ($(findstring k,$(MAKEFLAGS)),k)
|
||||
KEEP_GOING = -
|
||||
endif
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/macros.GNU
|
||||
|
||||
all: ACE ACE_ETCL ACE_ETCL_Parser ACE_FlReactor Monitor_Control ACE_Qt3Reactor_moc ACE_Qt3Reactor SSL ACE_TkReactor ACE_XtReactor bin-target PerlACE
|
||||
|
||||
REMAINING_TARGETS := $(filter-out all,$(TARGETS_NESTED:.nested=)) $(CUSTOM_TARGETS)
|
||||
|
||||
$(REMAINING_TARGETS):
|
||||
$(KEEP_GOING)@cd ace && $(MAKE) -f GNUmakefile.ACE $(@)
|
||||
$(KEEP_GOING)@cd ace/ETCL && $(MAKE) -f GNUmakefile.ACE_ETCL $(@)
|
||||
$(KEEP_GOING)@cd ace/ETCL && $(MAKE) -f GNUmakefile.ACE_ETCL_Parser $(@)
|
||||
$(KEEP_GOING)@cd ace/FlReactor && $(MAKE) -f GNUmakefile.ACE_FlReactor $(@)
|
||||
$(KEEP_GOING)@cd ace/Monitor_Control && $(MAKE) -f GNUmakefile.Monitor_Control $(@)
|
||||
$(KEEP_GOING)@cd ace/QtReactor && $(MAKE) -f GNUmakefile.ACE_Qt3Reactor_moc $(@)
|
||||
$(KEEP_GOING)@cd ace/QtReactor && $(MAKE) -f GNUmakefile.ACE_Qt3Reactor $(@)
|
||||
$(KEEP_GOING)@cd ace/SSL && $(MAKE) -f GNUmakefile.SSL $(@)
|
||||
$(KEEP_GOING)@cd ace/TkReactor && $(MAKE) -f GNUmakefile.ACE_TkReactor $(@)
|
||||
$(KEEP_GOING)@cd ace/XtReactor && $(MAKE) -f GNUmakefile.ACE_XtReactor $(@)
|
||||
$(KEEP_GOING)@cd bin && $(MAKE) -f GNUmakefile.bin $(@)
|
||||
$(KEEP_GOING)@cd bin/PerlACE && $(MAKE) -f GNUmakefile.PerlACE $(@)
|
||||
|
||||
.PHONY: ACE
|
||||
ACE:
|
||||
$(KEEP_GOING)@cd ace && $(MAKE) -f GNUmakefile.ACE all
|
||||
|
||||
.PHONY: ACE_ETCL
|
||||
ACE_ETCL: ACE
|
||||
$(KEEP_GOING)@cd ace/ETCL && $(MAKE) -f GNUmakefile.ACE_ETCL all
|
||||
|
||||
.PHONY: ACE_ETCL_Parser
|
||||
ACE_ETCL_Parser: ACE ACE_ETCL
|
||||
$(KEEP_GOING)@cd ace/ETCL && $(MAKE) -f GNUmakefile.ACE_ETCL_Parser all
|
||||
|
||||
.PHONY: ACE_FlReactor
|
||||
ACE_FlReactor: ACE
|
||||
$(KEEP_GOING)@cd ace/FlReactor && $(MAKE) -f GNUmakefile.ACE_FlReactor all
|
||||
|
||||
.PHONY: Monitor_Control
|
||||
Monitor_Control: ACE ACE_ETCL ACE_ETCL_Parser
|
||||
$(KEEP_GOING)@cd ace/Monitor_Control && $(MAKE) -f GNUmakefile.Monitor_Control all
|
||||
|
||||
.PHONY: ACE_Qt3Reactor_moc
|
||||
ACE_Qt3Reactor_moc:
|
||||
$(KEEP_GOING)@cd ace/QtReactor && $(MAKE) -f GNUmakefile.ACE_Qt3Reactor_moc all
|
||||
|
||||
.PHONY: ACE_Qt3Reactor
|
||||
ACE_Qt3Reactor: ACE ACE_Qt3Reactor_moc
|
||||
$(KEEP_GOING)@cd ace/QtReactor && $(MAKE) -f GNUmakefile.ACE_Qt3Reactor all
|
||||
|
||||
.PHONY: SSL
|
||||
SSL: ACE
|
||||
$(KEEP_GOING)@cd ace/SSL && $(MAKE) -f GNUmakefile.SSL all
|
||||
|
||||
.PHONY: ACE_TkReactor
|
||||
ACE_TkReactor: ACE
|
||||
$(KEEP_GOING)@cd ace/TkReactor && $(MAKE) -f GNUmakefile.ACE_TkReactor all
|
||||
|
||||
.PHONY: ACE_XtReactor
|
||||
ACE_XtReactor: ACE
|
||||
$(KEEP_GOING)@cd ace/XtReactor && $(MAKE) -f GNUmakefile.ACE_XtReactor all
|
||||
|
||||
.PHONY: bin-target
|
||||
bin-target: ACE
|
||||
$(KEEP_GOING)@cd bin && $(MAKE) -f GNUmakefile.bin all
|
||||
|
||||
.PHONY: PerlACE
|
||||
PerlACE:
|
||||
$(KEEP_GOING)@cd bin/PerlACE && $(MAKE) -f GNUmakefile.PerlACE all
|
||||
|
||||
project_name_list:
|
||||
@echo ACE_ETCL
|
||||
@echo ACE_ETCL_Parser
|
||||
@echo ACE_FlReactor
|
||||
@echo ACE
|
||||
@echo Monitor_Control
|
||||
@echo ACE_Qt3Reactor
|
||||
@echo ACE_Qt3Reactor_moc
|
||||
@echo SSL
|
||||
@echo ACE_TkReactor
|
||||
@echo ACE_XtReactor
|
||||
@echo bin-target
|
||||
@echo PerlACE
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
## Process this file with automake to create Makefile.in
|
||||
##
|
||||
## $Id: Makefile.am 80826 2008-03-04 14:51:23Z wotte $
|
||||
##
|
||||
## This file was generated by MPC. Any changes made directly to
|
||||
## this file will be lost the next time it is generated.
|
||||
##
|
||||
## MPC Command:
|
||||
## /acebuilds/ACE_wrappers-repository/bin/mwc.pl -include /acebuilds/MPC/config -include /acebuilds/MPC/templates -feature_file /acebuilds/ACE_wrappers-repository/local.features -noreldefs -type automake -exclude build,Kokyu
|
||||
|
||||
SUBDIRS = \
|
||||
ace \
|
||||
bin
|
||||
|
||||
ACLOCAL = @ACLOCAL@
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
AUTOMAKE_OPTIONS = foreign
|
||||
|
|
@ -1,781 +0,0 @@
|
|||
# Makefile.in generated by automake 1.11.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
|
||||
# Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
VPATH = @srcdir@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
target_triplet = @target@
|
||||
subdir = .
|
||||
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
|
||||
$(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \
|
||||
ChangeLog NEWS THANKS aux_config/config.guess \
|
||||
aux_config/config.sub aux_config/depcomp aux_config/install-sh \
|
||||
aux_config/ltmain.sh aux_config/missing
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/ace.m4 \
|
||||
$(top_srcdir)/m4/ace_defines.m4 $(top_srcdir)/m4/ace_func.m4 \
|
||||
$(top_srcdir)/m4/ace_functions.m4 \
|
||||
$(top_srcdir)/m4/ace_headers.m4 $(top_srcdir)/m4/acinclude.m4 \
|
||||
$(top_srcdir)/m4/aio.m4 $(top_srcdir)/m4/compiler.m4 \
|
||||
$(top_srcdir)/m4/config_h.m4 $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
||||
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
|
||||
$(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/platform.m4 \
|
||||
$(top_srcdir)/m4/subsets.m4 $(top_srcdir)/m4/threads.m4 \
|
||||
$(top_srcdir)/m4/tls.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
||||
configure.lineno config.status.lineno
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/ace/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
||||
html-recursive info-recursive install-data-recursive \
|
||||
install-dvi-recursive install-exec-recursive \
|
||||
install-html-recursive install-info-recursive \
|
||||
install-pdf-recursive install-ps-recursive install-recursive \
|
||||
installcheck-recursive installdirs-recursive pdf-recursive \
|
||||
ps-recursive uninstall-recursive
|
||||
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
||||
distclean-recursive maintainer-clean-recursive
|
||||
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
|
||||
$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
|
||||
distdir dist dist-all distcheck
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DIST_SUBDIRS = ace bin
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
distdir = $(PACKAGE)-$(VERSION)
|
||||
top_distdir = $(distdir)
|
||||
am__remove_distdir = \
|
||||
{ test ! -d "$(distdir)" \
|
||||
|| { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
|
||||
&& rm -fr "$(distdir)"; }; }
|
||||
am__relativize = \
|
||||
dir0=`pwd`; \
|
||||
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
|
||||
sed_rest='s,^[^/]*/*,,'; \
|
||||
sed_last='s,^.*/\([^/]*\)$$,\1,'; \
|
||||
sed_butlast='s,/*[^/]*$$,,'; \
|
||||
while test -n "$$dir1"; do \
|
||||
first=`echo "$$dir1" | sed -e "$$sed_first"`; \
|
||||
if test "$$first" != "."; then \
|
||||
if test "$$first" = ".."; then \
|
||||
dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
|
||||
dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
|
||||
else \
|
||||
first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
|
||||
if test "$$first2" = "$$first"; then \
|
||||
dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
|
||||
else \
|
||||
dir2="../$$dir2"; \
|
||||
fi; \
|
||||
dir0="$$dir0"/"$$first"; \
|
||||
fi; \
|
||||
fi; \
|
||||
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
|
||||
done; \
|
||||
reldir="$$dir2"
|
||||
DIST_ARCHIVES = $(distdir).tar.gz
|
||||
GZIP_ENV = --best
|
||||
distuninstallcheck_listfiles = find . -type f -print
|
||||
distcleancheck_listfiles = find . -type f -print
|
||||
ACEXML = @ACEXML@
|
||||
ACE_BETA = @ACE_BETA@
|
||||
ACE_BZIP2_CPPFLAGS = @ACE_BZIP2_CPPFLAGS@
|
||||
ACE_BZIP2_LDFLAGS = @ACE_BZIP2_LDFLAGS@
|
||||
ACE_BZIP2_LIBS = @ACE_BZIP2_LIBS@
|
||||
ACE_FLTK_CPPFLAGS = @ACE_FLTK_CPPFLAGS@
|
||||
ACE_FLTK_LIBS = @ACE_FLTK_LIBS@
|
||||
ACE_FOX_CPPFLAGS = @ACE_FOX_CPPFLAGS@
|
||||
ACE_FOX_LIBS = @ACE_FOX_LIBS@
|
||||
ACE_KERBEROS_INCLUDES = @ACE_KERBEROS_INCLUDES@
|
||||
ACE_MAJOR = @ACE_MAJOR@
|
||||
ACE_MINOR = @ACE_MINOR@
|
||||
ACE_QT_CPPFLAGS = @ACE_QT_CPPFLAGS@
|
||||
ACE_QT_LIBS = @ACE_QT_LIBS@
|
||||
ACE_TCL_CPPFLAGS = @ACE_TCL_CPPFLAGS@
|
||||
ACE_TCL_LIBS = @ACE_TCL_LIBS@
|
||||
ACE_TESTS_DIR = @ACE_TESTS_DIR@
|
||||
ACE_TK_CPPFLAGS = @ACE_TK_CPPFLAGS@
|
||||
ACE_TK_LIBS = @ACE_TK_LIBS@
|
||||
ACE_TLS_CPPFLAGS = @ACE_TLS_CPPFLAGS@
|
||||
ACE_TLS_LDFLAGS = @ACE_TLS_LDFLAGS@
|
||||
ACE_TLS_LIBS = @ACE_TLS_LIBS@
|
||||
ACE_VERSION_NAME = @ACE_VERSION_NAME@
|
||||
ACE_X11_CPPFLAGS = @ACE_X11_CPPFLAGS@
|
||||
ACE_X11_LDFLAGS = @ACE_X11_LDFLAGS@
|
||||
ACE_X11_LIBS = @ACE_X11_LIBS@
|
||||
ACE_XLIBS = @ACE_XLIBS@
|
||||
ACE_XT_CPPFLAGS = @ACE_XT_CPPFLAGS@
|
||||
ACE_XT_LDFLAGS = @ACE_XT_LDFLAGS@
|
||||
ACE_XT_LIBS = @ACE_XT_LIBS@
|
||||
ACE_ZLIB_CPPFLAGS = @ACE_ZLIB_CPPFLAGS@
|
||||
ACE_ZLIB_LDFLAGS = @ACE_ZLIB_LDFLAGS@
|
||||
ACE_ZLIB_LIBS = @ACE_ZLIB_LIBS@
|
||||
ACE_ZZIP_CPPFLAGS = @ACE_ZZIP_CPPFLAGS@
|
||||
ACE_ZZIP_LDFLAGS = @ACE_ZZIP_LDFLAGS@
|
||||
ACE_ZZIP_LIBS = @ACE_ZZIP_LIBS@
|
||||
ACLOCAL = @ACLOCAL@
|
||||
ALLOCA = @ALLOCA@
|
||||
AMTAR = @AMTAR@
|
||||
AR = @AR@
|
||||
ASNMP = @ASNMP@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
DSYMUTIL = @DSYMUTIL@
|
||||
DUMPBIN = @DUMPBIN@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
FGREP = @FGREP@
|
||||
FLTKCONFIG = @FLTKCONFIG@
|
||||
FOXCONFIG = @FOXCONFIG@
|
||||
GPERF = @GPERF@
|
||||
GREP = @GREP@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
KOKYU = @KOKYU@
|
||||
LD = @LD@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LEX = @LEX@
|
||||
LEXLIB = @LEXLIB@
|
||||
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIPO = @LIPO@
|
||||
LN_S = @LN_S@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MKDIR_P = @MKDIR_P@
|
||||
NM = @NM@
|
||||
NMEDIT = @NMEDIT@
|
||||
OBJDUMP = @OBJDUMP@
|
||||
OBJEXT = @OBJEXT@
|
||||
OTOOL = @OTOOL@
|
||||
OTOOL64 = @OTOOL64@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
PROF = @PROF@
|
||||
PURIFY = @PURIFY@
|
||||
QTDIR = @QTDIR@
|
||||
QUANTIFY = @QUANTIFY@
|
||||
Qt_CFLAGS = @Qt_CFLAGS@
|
||||
Qt_LIBS = @Qt_LIBS@
|
||||
RANLIB = @RANLIB@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
TAO = @TAO@
|
||||
VERSION = @VERSION@
|
||||
XMKMF = @XMKMF@
|
||||
XTREACTOR_TEST_XLIBS = @XTREACTOR_TEST_XLIBS@
|
||||
X_CFLAGS = @X_CFLAGS@
|
||||
X_EXTRA_LIBS = @X_EXTRA_LIBS@
|
||||
X_LIBS = @X_LIBS@
|
||||
X_PRE_LIBS = @X_PRE_LIBS@
|
||||
YACC = @YACC@
|
||||
YFLAGS = @YFLAGS@
|
||||
abs_builddir = @abs_builddir@
|
||||
abs_srcdir = @abs_srcdir@
|
||||
abs_top_builddir = @abs_top_builddir@
|
||||
abs_top_srcdir = @abs_top_srcdir@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
builddir = @builddir@
|
||||
datadir = @datadir@
|
||||
datarootdir = @datarootdir@
|
||||
docdir = @docdir@
|
||||
dvidir = @dvidir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
htmldir = @htmldir@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localedir = @localedir@
|
||||
localstatedir = @localstatedir@
|
||||
lt_ECHO = @lt_ECHO@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
protocols = @protocols@
|
||||
psdir = @psdir@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
srcdir = @srcdir@
|
||||
subdirs = @subdirs@
|
||||
sysconfdir = @sysconfdir@
|
||||
target = @target@
|
||||
target_alias = @target_alias@
|
||||
target_cpu = @target_cpu@
|
||||
target_os = @target_os@
|
||||
target_vendor = @target_vendor@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
SUBDIRS = ace bin $(am__append_1) $(am__append_2)
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
AUTOMAKE_OPTIONS = foreign
|
||||
all: all-recursive
|
||||
|
||||
.SUFFIXES:
|
||||
am--refresh:
|
||||
@:
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
|
||||
$(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --foreign Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
echo ' $(SHELL) ./config.status'; \
|
||||
$(SHELL) ./config.status;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
$(am__cd) $(srcdir) && $(AUTOCONF)
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
distclean-libtool:
|
||||
-rm -f libtool config.lt
|
||||
|
||||
# This directory's subdirectories are mostly independent; you can cd
|
||||
# into them and run `make' without going through this Makefile.
|
||||
# To change the values of `make' variables: instead of editing Makefiles,
|
||||
# (1) if the variable is set in `config.status', edit `config.status'
|
||||
# (which will cause the Makefiles to be regenerated when you run `make');
|
||||
# (2) otherwise, pass the desired values on the `make' command line.
|
||||
$(RECURSIVE_TARGETS):
|
||||
@fail= failcom='exit 1'; \
|
||||
for f in x $$MAKEFLAGS; do \
|
||||
case $$f in \
|
||||
*=* | --[!k]*);; \
|
||||
*k*) failcom='fail=yes';; \
|
||||
esac; \
|
||||
done; \
|
||||
dot_seen=no; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
dot_seen=yes; \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| eval $$failcom; \
|
||||
done; \
|
||||
if test "$$dot_seen" = "no"; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||
fi; test -z "$$fail"
|
||||
|
||||
$(RECURSIVE_CLEAN_TARGETS):
|
||||
@fail= failcom='exit 1'; \
|
||||
for f in x $$MAKEFLAGS; do \
|
||||
case $$f in \
|
||||
*=* | --[!k]*);; \
|
||||
*k*) failcom='fail=yes';; \
|
||||
esac; \
|
||||
done; \
|
||||
dot_seen=no; \
|
||||
case "$@" in \
|
||||
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
||||
*) list='$(SUBDIRS)' ;; \
|
||||
esac; \
|
||||
rev=''; for subdir in $$list; do \
|
||||
if test "$$subdir" = "."; then :; else \
|
||||
rev="$$subdir $$rev"; \
|
||||
fi; \
|
||||
done; \
|
||||
rev="$$rev ."; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
for subdir in $$rev; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| eval $$failcom; \
|
||||
done && test -z "$$fail"
|
||||
tags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
||||
done
|
||||
ctags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
|
||||
done
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
||||
include_option=--etags-include; \
|
||||
empty_fix=.; \
|
||||
else \
|
||||
include_option=--include; \
|
||||
empty_fix=; \
|
||||
fi; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test ! -f $$subdir/TAGS || \
|
||||
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
|
||||
fi; \
|
||||
done; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
$(am__remove_distdir)
|
||||
test -d "$(distdir)" || mkdir "$(distdir)"
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test -d "$(distdir)/$$subdir" \
|
||||
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
|
||||
$(am__relativize); \
|
||||
new_distdir=$$reldir; \
|
||||
dir1=$$subdir; dir2="$(top_distdir)"; \
|
||||
$(am__relativize); \
|
||||
new_top_distdir=$$reldir; \
|
||||
echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
|
||||
echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
|
||||
($(am__cd) $$subdir && \
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="$$new_top_distdir" \
|
||||
distdir="$$new_distdir" \
|
||||
am__remove_distdir=: \
|
||||
am__skip_length_check=: \
|
||||
am__skip_mode_fix=: \
|
||||
distdir) \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
-test -n "$(am__skip_mode_fix)" \
|
||||
|| find "$(distdir)" -type d ! -perm -755 \
|
||||
-exec chmod u+rwx,go+rx {} \; -o \
|
||||
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
||||
|| chmod -R a+r "$(distdir)"
|
||||
dist-gzip: distdir
|
||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-bzip2: distdir
|
||||
tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-lzma: distdir
|
||||
tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-xz: distdir
|
||||
tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-tarZ: distdir
|
||||
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-shar: distdir
|
||||
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist-zip: distdir
|
||||
-rm -f $(distdir).zip
|
||||
zip -rq $(distdir).zip $(distdir)
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist dist-all: distdir
|
||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
$(am__remove_distdir)
|
||||
|
||||
# This target untars the dist file and tries a VPATH configuration. Then
|
||||
# it guarantees that the distribution is self-contained by making another
|
||||
# tarfile.
|
||||
distcheck: dist
|
||||
case '$(DIST_ARCHIVES)' in \
|
||||
*.tar.gz*) \
|
||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
|
||||
*.tar.bz2*) \
|
||||
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
||||
*.tar.lzma*) \
|
||||
lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
|
||||
*.tar.xz*) \
|
||||
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
|
||||
*.tar.Z*) \
|
||||
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
||||
*.shar.gz*) \
|
||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
|
||||
*.zip*) \
|
||||
unzip $(distdir).zip ;;\
|
||||
esac
|
||||
chmod -R a-w $(distdir); chmod a+w $(distdir)
|
||||
mkdir $(distdir)/_build
|
||||
mkdir $(distdir)/_inst
|
||||
chmod a-w $(distdir)
|
||||
test -d $(distdir)/_build || exit 0; \
|
||||
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
||||
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
||||
&& am__cwd=`pwd` \
|
||||
&& $(am__cd) $(distdir)/_build \
|
||||
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
|
||||
$(DISTCHECK_CONFIGURE_FLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
|
||||
distuninstallcheck \
|
||||
&& chmod -R a-w "$$dc_install_base" \
|
||||
&& ({ \
|
||||
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
||||
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
||||
} || { rm -rf "$$dc_destdir"; exit 1; }) \
|
||||
&& rm -rf "$$dc_destdir" \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
||||
&& rm -rf $(DIST_ARCHIVES) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
|
||||
&& cd "$$am__cwd" \
|
||||
|| exit 1
|
||||
$(am__remove_distdir)
|
||||
@(echo "$(distdir) archives ready for distribution: "; \
|
||||
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
||||
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
||||
distuninstallcheck:
|
||||
@$(am__cd) '$(distuninstallcheck_dir)' \
|
||||
&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
|
||||
|| { echo "ERROR: files left after uninstall:" ; \
|
||||
if test -n "$(DESTDIR)"; then \
|
||||
echo " (check DESTDIR support)"; \
|
||||
fi ; \
|
||||
$(distuninstallcheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
distcleancheck: distclean
|
||||
@if test '$(srcdir)' = . ; then \
|
||||
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
|
||||
exit 1 ; \
|
||||
fi
|
||||
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|
||||
|| { echo "ERROR: files left in build directory after distclean:" ; \
|
||||
$(distcleancheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
check-am: all-am
|
||||
check: check-recursive
|
||||
all-am: Makefile
|
||||
installdirs: installdirs-recursive
|
||||
installdirs-am:
|
||||
install: install-recursive
|
||||
install-exec: install-exec-recursive
|
||||
install-data: install-data-recursive
|
||||
uninstall: uninstall-recursive
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-recursive
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-recursive
|
||||
|
||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
||||
|
||||
distclean: distclean-recursive
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic distclean-libtool \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-recursive
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-recursive
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-recursive
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-recursive
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-recursive
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-recursive
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-recursive
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-recursive
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-recursive
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -rf $(top_srcdir)/autom4te.cache
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-recursive
|
||||
|
||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
||||
|
||||
pdf: pdf-recursive
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-recursive
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
|
||||
install-am install-strip tags-recursive
|
||||
|
||||
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
|
||||
all all-am am--refresh check check-am clean clean-generic \
|
||||
clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \
|
||||
dist-gzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \
|
||||
distcheck distclean distclean-generic distclean-libtool \
|
||||
distclean-tags distcleancheck distdir distuninstallcheck dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-data install-data-am install-dvi install-dvi-am \
|
||||
install-exec install-exec-am install-html install-html-am \
|
||||
install-info install-info-am install-man install-pdf \
|
||||
install-pdf-am install-ps install-ps-am install-strip \
|
||||
installcheck installcheck-am installdirs installdirs-am \
|
||||
maintainer-clean maintainer-clean-generic mostlyclean \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags tags-recursive uninstall uninstall-am
|
||||
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
|
|
@ -1,90 +0,0 @@
|
|||
[Please use the PRF form below to submit bug reports, problem reports,
|
||||
etc., to the ACE developers and interested users. Send it to
|
||||
ace-bugs@list.isis.vanderbilt.edu, you must be subscribed to the list
|
||||
in order to be able to post to it. If you are using OCI, PrismTech, or
|
||||
Riverace's versions of ACE do not send bugs to this mailing list, but
|
||||
instead contact those companies for support. Please also send your
|
||||
PRF as plain ASCII text, _not_ uuencoded or as an attachment.
|
||||
|
||||
We prefer that all bug reports be submitted through our bug tracking
|
||||
system. See $ACE_ROOT/docs/usage-bugzilla.html for more information
|
||||
about how to do this. If you are unsure as to whether your problem
|
||||
is a real bug or not then please submit your question to the mailing
|
||||
list using the following form. Not using the problem report form
|
||||
will make it harder or impossible to identify the problem, and in
|
||||
many cases we will be unable to help at all. Also please try to
|
||||
browse bugzilla and the ChangeLog files to find out if your problem
|
||||
has been solved in a more recent version of ACE.
|
||||
|
||||
To subscribe to the list see
|
||||
http://www.cs.wustl.edu/~schmidt/ACE-mail.html
|
||||
|
||||
Replace/remove all the explanatory text in brackets before mailing.
|
||||
|
||||
Please send this form as ASCII text only. Do _not_ send it as an
|
||||
attachment, or as tar'ed, compressed and/or uuencoded text. And
|
||||
limit line lengths to less than 80 characters.
|
||||
|
||||
PLEASE make your Subject: line as descriptive as possible.
|
||||
Subjects like "ACE bug" or "bug report" are not helpful!
|
||||
Also, do _not_ include the word "help" in the Subject!]
|
||||
|
||||
When including your config.h and platform_macros.GNU files as requested
|
||||
below, only include the contents if you use the recommended method of
|
||||
including the platform-specific file in your file. If you use a link
|
||||
to the platform-specific file, simply state which one - DO NOT
|
||||
include an entire platform-specific configuration file in the form.
|
||||
|
||||
8<----------8<----------8<----------8<----------8<----------8<----------8<----
|
||||
|
||||
To: ace-bugs@list.isis.vanderbilt.edu
|
||||
Subject: [area]: [synopsis]
|
||||
|
||||
ACE VERSION: 5.8.3
|
||||
|
||||
HOST MACHINE and OPERATING SYSTEM:
|
||||
If on Windows based OS's, which version of WINSOCK do you
|
||||
use?:
|
||||
|
||||
TARGET MACHINE and OPERATING SYSTEM, if different from HOST:
|
||||
COMPILER NAME AND VERSION (AND PATCHLEVEL):
|
||||
|
||||
THE $ACE_ROOT/ace/config.h FILE [if you use a link to a platform-
|
||||
specific file, simply state which one]:
|
||||
|
||||
THE $ACE_ROOT/include/makeinclude/platform_macros.GNU FILE [if you
|
||||
use a link to a platform-specific file, simply state which one
|
||||
(unless this isn't used in this case, e.g., with Microsoft Visual
|
||||
C++)]:
|
||||
|
||||
BUILD METHOD USED:
|
||||
[Experimental ./configure or traditional makefile/project file?]
|
||||
|
||||
CONTENTS OF $ACE_ROOT/bin/MakeProjectCreator/config/default.features
|
||||
(used by MPC when you generate your own makefiles):
|
||||
|
||||
AREA/CLASS/EXAMPLE AFFECTED:
|
||||
[What example failed? What module failed to compile?]
|
||||
|
||||
DOES THE PROBLEM AFFECT:
|
||||
COMPILATION?
|
||||
LINKING?
|
||||
On Unix systems, did you run make realclean first?
|
||||
EXECUTION?
|
||||
OTHER (please specify)?
|
||||
[Please indicate whether ACE, your application, or both are affected.]
|
||||
|
||||
SYNOPSIS:
|
||||
[Brief description of the problem]
|
||||
|
||||
DESCRIPTION:
|
||||
[Detailed description of problem. Don't just say "<blah>
|
||||
doesn't work, here's a fix," explain what your program does
|
||||
to get to the <blah> state. ]
|
||||
|
||||
REPEAT BY:
|
||||
[What you did to get the error; include test program or session
|
||||
transcript if at all possible. ]
|
||||
|
||||
SAMPLE FIX/WORKAROUND:
|
||||
[If available ]
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libdir=@libdir@
|
||||
includedir=@includedir@
|
||||
|
||||
Name: ACE
|
||||
Description: ADAPTIVE Communication Environment
|
||||
Version: @VERSION@
|
||||
Libs: -L${libdir} -lACE @LIBS@
|
||||
Cflags: -I${includedir}
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,136 +0,0 @@
|
|||
// $Id: Basic_Types.cpp 91366 2010-08-16 12:42:35Z mhengstmengel $
|
||||
|
||||
#include "ace/Basic_Types.h"
|
||||
|
||||
#if !defined (__ACE_INLINE__)
|
||||
# include "ace/Basic_Types.inl"
|
||||
#endif /* ! __ACE_INLINE__ */
|
||||
|
||||
|
||||
#if defined (ACE_LACKS_LONGLONG_T) && !defined (ACE_LACKS_UNSIGNEDLONGLONG_T)
|
||||
# include "ace/Log_Msg.h"
|
||||
# include "ace/OS_NS_stdio.h"
|
||||
# include "ace/OS_NS_string.h"
|
||||
# if !defined (ACE_LACKS_IOSTREAM_TOTALLY)
|
||||
// FUZZ: disable check_for_streams_include
|
||||
# include "ace/streams.h"
|
||||
# endif /* ! ACE_LACKS_IOSTREAM_TOTALLY */
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
void
|
||||
ACE_U_LongLong::output (FILE *file) const
|
||||
{
|
||||
if (h_ () > 0)
|
||||
ACE_OS::fprintf (file, "0x%lx%0*lx", h_ (), 2 * sizeof l_ (), l_ ());
|
||||
else
|
||||
ACE_OS::fprintf (file, "0x%lx", l_ ());
|
||||
}
|
||||
|
||||
|
||||
ACE_TCHAR *
|
||||
ACE_U_LongLong::as_string (ACE_TCHAR *output,
|
||||
unsigned int base,
|
||||
unsigned int uppercase) const
|
||||
{
|
||||
if (*this == 0)
|
||||
{
|
||||
ACE_OS::strcpy(output, "0");
|
||||
}
|
||||
else
|
||||
{
|
||||
switch(base)
|
||||
{
|
||||
case 8:
|
||||
{
|
||||
unsigned int index = 0;
|
||||
int bshift = 31;
|
||||
while(bshift >= 1)
|
||||
{
|
||||
unsigned int sval = (this->h_ () >> bshift) & 7;
|
||||
if (sval > 0 || index != 0)
|
||||
{
|
||||
output[index] = sval + '0';
|
||||
++index;
|
||||
}
|
||||
bshift -= 3;
|
||||
}
|
||||
bshift = 30;
|
||||
while(bshift >= 0)
|
||||
{
|
||||
unsigned int sval = (this->l_ () >> bshift) & 7;
|
||||
// Combine the last bit of hi with the first 3-bit digit
|
||||
if (bshift == 30)
|
||||
{
|
||||
sval |= (this->h_ () & 1) << 2;
|
||||
}
|
||||
if (sval > 0 || index != 0)
|
||||
{
|
||||
output[index] = sval + '0';
|
||||
++index;
|
||||
}
|
||||
bshift -= 3;
|
||||
}
|
||||
output[index] = '\0';
|
||||
break;
|
||||
}
|
||||
case 10:
|
||||
{
|
||||
ACE_OS::sprintf(output, "%.0f", *this / 1.0);
|
||||
break;
|
||||
}
|
||||
case 16:
|
||||
{
|
||||
if (this->h_ () != 0)
|
||||
{
|
||||
ACE_OS::sprintf(output,
|
||||
(uppercase ? "%lX%0*lX" : "%lx%0*lx"),
|
||||
this->h_ (), 2 * sizeof this->l_ (),
|
||||
this->l_ ());
|
||||
}
|
||||
else
|
||||
{
|
||||
ACE_OS::sprintf(output,
|
||||
(uppercase ? "%lX" : "%lx"), this->l_ ());
|
||||
|
||||
}
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
ACE_DEBUG ((LM_DEBUG,
|
||||
ACE_TEXT ("Unsupported base = %u\n"), base));
|
||||
output[0] = '\0';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
|
||||
# if !defined (ACE_LACKS_IOSTREAM_TOTALLY)
|
||||
ostream&
|
||||
operator<< (ostream& os, const ACE_U_LongLong& ll)
|
||||
{
|
||||
#ifdef __TANDEM && (__CPLUSPLUS_VERSION >= 3)
|
||||
unsigned long flags = os.flags();
|
||||
#else
|
||||
unsigned long flags = os.setf(0);
|
||||
#endif
|
||||
char buffer[32];
|
||||
|
||||
if ((flags & ios::oct) != 0)
|
||||
os << ll.as_string (buffer, 8);
|
||||
else if ((flags & ios::hex) != 0)
|
||||
os << ll.as_string (buffer, 16, (flags & ios::uppercase));
|
||||
else
|
||||
os << ll.as_string (buffer);
|
||||
return os;
|
||||
}
|
||||
# endif
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
#endif /* ACE_LACKS_LONGLONG_T */
|
||||
|
||||
|
|
@ -1,954 +0,0 @@
|
|||
// -*- C++ -*-
|
||||
//
|
||||
// $Id: Basic_Types.inl 80826 2008-03-04 14:51:23Z wotte $
|
||||
|
||||
# if !defined (ACE_LACKS_LONGLONG_T) && defined (ACE_LACKS_UNSIGNEDLONGLONG_T)
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
// Implementation for ACE_U_LongLong when we have signed long long
|
||||
// but no unsigned long long.
|
||||
|
||||
ACE_INLINE
|
||||
ACE_U_LongLong::ACE_U_LongLong (const long long value)
|
||||
: data_ (value)
|
||||
{
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::hi (void) const
|
||||
{
|
||||
return (data_ >> 32) & 0xFFFFFFFF;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::lo (void) const
|
||||
{
|
||||
return data_ & 0xFFFFFFFF;
|
||||
}
|
||||
|
||||
ACE_INLINE void
|
||||
ACE_U_LongLong::hi (const ACE_UINT32 hi)
|
||||
{
|
||||
data_ = hi;
|
||||
data_ <<= 32;
|
||||
}
|
||||
|
||||
ACE_INLINE void
|
||||
ACE_U_LongLong::lo (const ACE_UINT32 lo)
|
||||
{
|
||||
data_ = lo;
|
||||
}
|
||||
|
||||
ACE_INLINE long long
|
||||
ACE_U_LongLong::to_int64 (void) const
|
||||
{
|
||||
return data_;
|
||||
}
|
||||
|
||||
ACE_INLINE
|
||||
ACE_U_LongLong::~ACE_U_LongLong (void)
|
||||
{
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator== (const ACE_U_LongLong &n) const
|
||||
{
|
||||
return data_ == n.data_;
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator== (const ACE_UINT32 n) const
|
||||
{
|
||||
return data_ == n;
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator!= (const ACE_U_LongLong &n) const
|
||||
{
|
||||
return ! (*this == n);
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator!= (const ACE_UINT32 n) const
|
||||
{
|
||||
return ! (*this == n);
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator< (const ACE_U_LongLong &n) const
|
||||
{
|
||||
if (data_ > 0)
|
||||
if (n.data_ > 0)
|
||||
return data_ < n.data_;
|
||||
else
|
||||
return true;
|
||||
else
|
||||
if (n.data_ > 0)
|
||||
return false;
|
||||
else
|
||||
return data_ < n.data_;
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator< (const ACE_UINT32 n) const
|
||||
{
|
||||
return operator< (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator<= (const ACE_U_LongLong &n) const
|
||||
{
|
||||
if (data_ == n.data_) return true;
|
||||
|
||||
return data_ < n.data_;
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator<= (const ACE_UINT32 n) const
|
||||
{
|
||||
return operator<= (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator> (const ACE_U_LongLong &n) const
|
||||
{
|
||||
if (data_ > 0)
|
||||
if (n.data_ > 0)
|
||||
return data_ > n.data_;
|
||||
else
|
||||
return false;
|
||||
else
|
||||
if (n.data_ > 0)
|
||||
return true;
|
||||
else
|
||||
return data_ > n.data_;
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator> (const ACE_UINT32 n) const
|
||||
{
|
||||
return operator> (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator>= (const ACE_U_LongLong &n) const
|
||||
{
|
||||
if (data_ == n.data_) return true;
|
||||
|
||||
return data_ > n.data_;
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator>= (const ACE_UINT32 n) const
|
||||
{
|
||||
return operator>= (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE
|
||||
ACE_U_LongLong::ACE_U_LongLong (const ACE_U_LongLong &n)
|
||||
: data_ (n.data_)
|
||||
{
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator= (const ACE_U_LongLong &n)
|
||||
{
|
||||
data_ = n.data_;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator= (const ACE_INT32 &rhs)
|
||||
{
|
||||
if (rhs >= 0)
|
||||
{
|
||||
data_ = rhs;
|
||||
data_ &= 0xFFFFFFFF;
|
||||
}
|
||||
else
|
||||
{
|
||||
// We do not handle the case where a negative 32 bit integer is
|
||||
// assigned to this representation of a 64 bit unsigned integer.
|
||||
// The "undefined behavior" behavior performed by this
|
||||
// implementation is to simply set all bits to zero.
|
||||
data_ = 0;
|
||||
}
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator= (const ACE_UINT32 &rhs)
|
||||
{
|
||||
data_ = rhs;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::operator+ (const ACE_U_LongLong &n) const
|
||||
{
|
||||
return data_ + n.data_;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::operator+ (const ACE_UINT32 n) const
|
||||
{
|
||||
return operator+ (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::operator- (const ACE_U_LongLong &n) const
|
||||
{
|
||||
return data_ - n.data_;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::operator- (const ACE_UINT32 n) const
|
||||
{
|
||||
return operator- (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::operator<< (const u_int n) const
|
||||
{
|
||||
return data_ << n;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator<<= (const u_int n)
|
||||
{
|
||||
data_ <<= n;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::operator>> (const u_int n) const
|
||||
{
|
||||
return data_ >> n;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator>>= (const u_int n)
|
||||
{
|
||||
data_ >>= n;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE double
|
||||
ACE_U_LongLong::operator/ (const double n) const
|
||||
{
|
||||
return data_ / n;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator+= (const ACE_U_LongLong &n)
|
||||
{
|
||||
data_ += n.data_;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator+= (const ACE_UINT32 n)
|
||||
{
|
||||
return operator+= (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::operator* (const ACE_UINT32 n) const
|
||||
{
|
||||
return data_ * n;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator*= (const ACE_UINT32 n)
|
||||
{
|
||||
data_ *= n;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator-= (const ACE_U_LongLong &n)
|
||||
{
|
||||
data_ -= n.data_;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator-= (const ACE_UINT32 n)
|
||||
{
|
||||
return operator-= (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator++ ()
|
||||
{
|
||||
++data_;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator-- ()
|
||||
{
|
||||
--data_;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE const ACE_U_LongLong
|
||||
ACE_U_LongLong::operator++ (int)
|
||||
{
|
||||
// Post-increment operator should always be implemented in terms of
|
||||
// the pre-increment operator to enforce consistent semantics.
|
||||
ACE_U_LongLong temp (*this);
|
||||
++*this;
|
||||
return temp;
|
||||
}
|
||||
|
||||
ACE_INLINE const ACE_U_LongLong
|
||||
ACE_U_LongLong::operator-- (int)
|
||||
{
|
||||
// Post-decrement operator should always be implemented in terms of
|
||||
// the pre-decrement operator to enforce consistent semantics.
|
||||
ACE_U_LongLong temp (*this);
|
||||
--*this;
|
||||
return temp;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator|= (const ACE_U_LongLong n)
|
||||
{
|
||||
data_ |= n.data_;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator|= (const ACE_UINT32 n)
|
||||
{
|
||||
return operator|= (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator&= (const ACE_U_LongLong n)
|
||||
{
|
||||
data_ &= n.data_;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator&= (const ACE_UINT32 n)
|
||||
{
|
||||
return operator&= (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator/ (const ACE_UINT32 n) const
|
||||
{
|
||||
return data_ / n;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator% (const ACE_UINT32 n) const
|
||||
{
|
||||
return data_ % n;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator| (const ACE_INT32 n) const
|
||||
{
|
||||
return data_ | n;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator& (const ACE_INT32 n) const
|
||||
{
|
||||
return data_ & n;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::operator* (const ACE_INT32 n) const
|
||||
{
|
||||
return operator* ((ACE_UINT32) n);
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator*= (const ACE_INT32 n)
|
||||
{
|
||||
return operator*= ((ACE_UINT32) n);
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator/ (const ACE_INT32 n) const
|
||||
{
|
||||
return operator/ ((ACE_UINT32) n);
|
||||
}
|
||||
|
||||
#if ACE_SIZEOF_INT == 4
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator/ (const u_long n) const
|
||||
{
|
||||
return operator/ ((ACE_UINT32) n);
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator/ (const long n) const
|
||||
{
|
||||
return operator/ ((ACE_UINT32) n);
|
||||
}
|
||||
|
||||
#else /* ACE_SIZEOF_INT != 4 */
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator/ (const u_int n) const
|
||||
{
|
||||
return operator/ ((ACE_UINT32) n);
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator/ (const int n) const
|
||||
{
|
||||
return operator/ ((ACE_UINT32) n);
|
||||
}
|
||||
#endif
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
#elif defined (ACE_LACKS_LONGLONG_T)
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
ACE_INLINE
|
||||
ACE_U_LongLong::ACE_U_LongLong (const ACE_UINT32 lo, const ACE_UINT32 hi)
|
||||
{
|
||||
h_ () = hi;
|
||||
l_ () = lo;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::hi (void) const
|
||||
{
|
||||
return h_ ();
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::lo (void) const
|
||||
{
|
||||
return l_ ();
|
||||
}
|
||||
|
||||
ACE_INLINE void
|
||||
ACE_U_LongLong::hi (const ACE_UINT32 hi)
|
||||
{
|
||||
h_ () = hi;
|
||||
}
|
||||
|
||||
ACE_INLINE void
|
||||
ACE_U_LongLong::lo (const ACE_UINT32 lo)
|
||||
{
|
||||
l_ () = lo;
|
||||
}
|
||||
|
||||
ACE_INLINE
|
||||
ACE_U_LongLong::~ACE_U_LongLong (void)
|
||||
{
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator== (const ACE_U_LongLong &n) const
|
||||
{
|
||||
return h_ () == n.h_ () && l_ () == n.l_ ();
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator== (const ACE_UINT32 n) const
|
||||
{
|
||||
return h_ () == 0 && l_ () == n;
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator!= (const ACE_U_LongLong &n) const
|
||||
{
|
||||
return ! (*this == n);
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator!= (const ACE_UINT32 n) const
|
||||
{
|
||||
return ! (*this == n);
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator< (const ACE_U_LongLong &n) const
|
||||
{
|
||||
return h_ () < n.h_ () ? 1
|
||||
: h_ () > n.h_ () ? 0
|
||||
: l_ () < n.l_ ();
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator< (const ACE_UINT32 n) const
|
||||
{
|
||||
return operator< (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator<= (const ACE_U_LongLong &n) const
|
||||
{
|
||||
return h_ () < n.h_ () ? 1
|
||||
: h_ () > n.h_ () ? 0
|
||||
: l_ () <= n.l_ ();
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator<= (const ACE_UINT32 n) const
|
||||
{
|
||||
return operator<= (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator> (const ACE_U_LongLong &n) const
|
||||
{
|
||||
return h_ () > n.h_ () ? 1
|
||||
: h_ () < n.h_ () ? 0
|
||||
: l_ () > n.l_ ();
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator> (const ACE_UINT32 n) const
|
||||
{
|
||||
return operator> (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator>= (const ACE_U_LongLong &n) const
|
||||
{
|
||||
return h_ () > n.h_ () ? 1
|
||||
: h_ () < n.h_ () ? 0
|
||||
: l_ () >= n.l_ ();
|
||||
}
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_U_LongLong::operator>= (const ACE_UINT32 n) const
|
||||
{
|
||||
return operator>= (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE
|
||||
ACE_U_LongLong::ACE_U_LongLong (const ACE_U_LongLong &n)
|
||||
{
|
||||
h_ () = n.h_ ();
|
||||
l_ () = n.l_ ();
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator= (const ACE_U_LongLong &n)
|
||||
{
|
||||
h_ () = n.h_ ();
|
||||
l_ () = n.l_ ();
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator= (const ACE_INT32 &rhs)
|
||||
{
|
||||
if (rhs >= 0)
|
||||
{
|
||||
l_ () = static_cast<ACE_UINT32> (rhs);
|
||||
h_ () = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
// We do not handle the case where a negative 32 bit integer is
|
||||
// assigned to this representation of a 64 bit unsigned integer.
|
||||
// The "undefined behavior" behavior performed by this
|
||||
// implementation is to simply set all bits to zero.
|
||||
l_ () = 0;
|
||||
h_ () = 0;
|
||||
}
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator= (const ACE_UINT32 &rhs)
|
||||
{
|
||||
l_ () = rhs;
|
||||
h_ () = 0;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::operator+ (const ACE_U_LongLong &n) const
|
||||
{
|
||||
ACE_U_LongLong ret (l_ () + n.l_ (), h_ () + n.h_ ());
|
||||
if (ret.l_ () < n.l_ ()) /* carry */ ++ret.h_ ();
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::operator+ (const ACE_UINT32 n) const
|
||||
{
|
||||
return operator+ (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::operator- (const ACE_U_LongLong &n) const
|
||||
{
|
||||
ACE_U_LongLong ret (l_ () - n.l_ (), h_ () - n.h_ ());
|
||||
if (l_ () < n.l_ ()) /* borrow */ --ret.h_ ();
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::operator- (const ACE_UINT32 n) const
|
||||
{
|
||||
return operator- (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::operator<< (const u_int n) const
|
||||
{
|
||||
const ACE_UINT32 carry_mask = l_ () >> (32 - n);
|
||||
ACE_U_LongLong ret (n < 32 ? l_ () << n : 0,
|
||||
n < 32 ? (h_ () << n) | carry_mask : carry_mask);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator<<= (const u_int n)
|
||||
{
|
||||
const ACE_UINT32 carry_mask = l_ () >> (32 - n);
|
||||
h_ () = n < 32 ? (h_ () << n) | carry_mask : carry_mask;
|
||||
|
||||
// g++ 2.7.2.3/Solaris 2.5.1 doesn't modify l_ () if shifted by 32.
|
||||
l_ () = n < 32 ? l_ () << n : 0;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::operator>> (const u_int n) const
|
||||
{
|
||||
const ACE_UINT32 carry_mask = h_ () << (32 - n);
|
||||
ACE_U_LongLong ret (n < 32 ? (l_ () >> n) | carry_mask : 0,
|
||||
n < 32 ? h_ () >> n : 0);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator>>= (const u_int n)
|
||||
{
|
||||
const ACE_UINT32 carry_mask = h_ () << (32 - n);
|
||||
l_ () = n < 32 ? (l_ () >> n) | carry_mask : carry_mask;
|
||||
h_ () = n < 32 ? h_ () >> n : 0;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE double
|
||||
ACE_U_LongLong::operator/ (const double n) const
|
||||
{
|
||||
// See the derivation above in operator/ (const ACE_UINT32).
|
||||
|
||||
return ((double) 0xffffffffu - n + 1.0) / n * h_ () +
|
||||
(double) h_ () + (double) l_ () / n;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator+= (const ACE_U_LongLong &n)
|
||||
{
|
||||
h_ () += n.h_ ();
|
||||
l_ () += n.l_ ();
|
||||
if (l_ () < n.l_ ()) /* carry */ ++h_ ();
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator+= (const ACE_UINT32 n)
|
||||
{
|
||||
return operator+= (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
#define ACE_HIGHBIT (~(~0UL >> 1))
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::ul_shift (ACE_UINT32 a, ACE_UINT32 c_in, ACE_UINT32 *c_out) const
|
||||
{
|
||||
const ACE_UINT32 b = (a << 1) | c_in;
|
||||
*c_out = (*c_out << 1) + ((a & ACE_HIGHBIT) > 0);
|
||||
|
||||
return b;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::ull_shift (ACE_U_LongLong a,
|
||||
ACE_UINT32 c_in,
|
||||
ACE_UINT32 *c_out) const
|
||||
{
|
||||
ACE_U_LongLong b;
|
||||
|
||||
b.l_ () = (a.l_ () << 1) | c_in;
|
||||
c_in = ((a.l_ () & ACE_HIGHBIT) > 0);
|
||||
b.h_ () = (a.h_ () << 1) | c_in;
|
||||
*c_out = (*c_out << 1) + ((a.h_ () & ACE_HIGHBIT) > 0);
|
||||
|
||||
return b;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::ull_add (ACE_U_LongLong a, ACE_U_LongLong b, ACE_UINT32 *carry) const
|
||||
{
|
||||
ACE_U_LongLong r (0, 0);
|
||||
ACE_UINT32 c1, c2, c3, c4;
|
||||
|
||||
c1 = a.l_ () % 2;
|
||||
c2 = b.l_ () % 2;
|
||||
c3 = 0;
|
||||
|
||||
r.l_ () = a.l_ ()/2 + b.l_ ()/2 + (c1+c2)/2;
|
||||
r.l_ () = ul_shift (r.l_ (), (c1+c2)%2, &c3);
|
||||
|
||||
c1 = a.h_ () % 2;
|
||||
c2 = b.h_ () % 2;
|
||||
c4 = 0;
|
||||
|
||||
r.h_ () = a.h_ ()/2 + b.h_ ()/2 + (c1+c2+c3)/2;
|
||||
r.h_ () = ul_shift (r.h_ (), (c1+c2+c3)%2, &c4);
|
||||
|
||||
*carry = c4;
|
||||
|
||||
return r;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::ull_mult (ACE_U_LongLong a, ACE_UINT32 b, ACE_UINT32 *carry) const
|
||||
{
|
||||
register ACE_UINT32 mask = ACE_HIGHBIT;
|
||||
const ACE_U_LongLong zero (0, 0);
|
||||
ACE_U_LongLong accum (0, 0);
|
||||
ACE_UINT32 c;
|
||||
|
||||
*carry = 0;
|
||||
if (b > 0)
|
||||
do
|
||||
{
|
||||
accum = ull_shift (accum, 0U, carry);
|
||||
if (b & mask)
|
||||
accum = ull_add (accum, a, &c);
|
||||
else
|
||||
accum = ull_add (accum, zero, &c);
|
||||
*carry += c;
|
||||
mask >>= 1;
|
||||
}
|
||||
while (mask > 0);
|
||||
|
||||
return accum;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::operator* (const ACE_UINT32 n) const
|
||||
{
|
||||
ACE_UINT32 carry; // will throw the carry away
|
||||
|
||||
return ull_mult (*this, n, &carry);
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator*= (const ACE_UINT32 n)
|
||||
{
|
||||
ACE_UINT32 carry; // will throw the carry away
|
||||
|
||||
return *this = ull_mult (*this, n, &carry);
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator-= (const ACE_U_LongLong &n)
|
||||
{
|
||||
h_ () -= n.h_ ();
|
||||
if (l_ () < n.l_ ()) /* borrow */ --h_ ();
|
||||
l_ () -= n.l_ ();
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator-= (const ACE_UINT32 n)
|
||||
{
|
||||
return operator-= (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator++ ()
|
||||
{
|
||||
++l_ ();
|
||||
if (l_ () == 0) /* carry */ ++h_ ();
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator-- ()
|
||||
{
|
||||
if (l_ () == 0) /* borrow */ --h_ ();
|
||||
--l_ ();
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE const ACE_U_LongLong
|
||||
ACE_U_LongLong::operator++ (int)
|
||||
{
|
||||
// Post-increment operator should always be implemented in terms of
|
||||
// the pre-increment operator to enforce consistent semantics.
|
||||
ACE_U_LongLong temp (*this);
|
||||
++*this;
|
||||
return temp;
|
||||
}
|
||||
|
||||
ACE_INLINE const ACE_U_LongLong
|
||||
ACE_U_LongLong::operator-- (int)
|
||||
{
|
||||
// Post-decrement operator should always be implemented in terms of
|
||||
// the pre-decrement operator to enforce consistent semantics.
|
||||
ACE_U_LongLong temp (*this);
|
||||
--*this;
|
||||
return temp;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator|= (const ACE_U_LongLong n)
|
||||
{
|
||||
l_ () |= n.l_ ();
|
||||
h_ () |= n.h_ ();
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator|= (const ACE_UINT32 n)
|
||||
{
|
||||
return operator|= (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator&= (const ACE_U_LongLong n)
|
||||
{
|
||||
l_ () &= n.l_ ();
|
||||
h_ () &= n.h_ ();
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator&= (const ACE_UINT32 n)
|
||||
{
|
||||
return operator&= (static_cast<const ACE_U_LongLong> (n));
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator/ (const ACE_UINT32 n) const
|
||||
{
|
||||
// This takes advantage of the fact that the return type has only 32
|
||||
// bits. Replace 0x100000000 with 0xffffffff + 1 because the former
|
||||
// has 33 bits.
|
||||
// Quotient = (0x100000000u * hi_ + lo_) / n
|
||||
// = ((0x100000000u - n + n) * hi_ + lo_) / n
|
||||
// = ((0x100000000u - n) / n * hi_ + hi_ * n / n + lo_ / n
|
||||
// = (0x100000000u - n) / n * hi_ + hi_ + lo_ / n
|
||||
// = (0xffffffffu - n + 1) / n * hi_ + hi_ + lo_ / n
|
||||
|
||||
return (0xffffffffu - n + 1) / n * h_ () + h_ () + l_ () / n;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator% (const ACE_UINT32 n) const
|
||||
{
|
||||
// Because the argument is an ACE_UINT32, the result can never be
|
||||
// bigger than 32 bits. Replace 0x100000000 with 0xffffffff + 1
|
||||
// because the former has 33 bits.
|
||||
// Mod = (0x100000000u * hi_ + lo_) % n
|
||||
// = (0x100000000u % n * hi_ + lo_ % n) % n
|
||||
// = ((0x100000000u - n) % n * hi_ + lo_ % n) % n
|
||||
// = ((0xffffffffu - n + 1) % n * hi_ + lo_ % n) % n
|
||||
|
||||
return ((0xffffffff - n + 1) % n * h_ () + l_ () % n) % n;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator| (const ACE_INT32 n) const
|
||||
{
|
||||
return l_ () | n;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator& (const ACE_INT32 n) const
|
||||
{
|
||||
return l_ () & n;
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong
|
||||
ACE_U_LongLong::operator* (const ACE_INT32 n) const
|
||||
{
|
||||
return operator* ((ACE_UINT32) n);
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_U_LongLong &
|
||||
ACE_U_LongLong::operator*= (const ACE_INT32 n)
|
||||
{
|
||||
return operator*= ((ACE_UINT32) n);
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator/ (const ACE_INT32 n) const
|
||||
{
|
||||
return operator/ ((ACE_UINT32) n);
|
||||
}
|
||||
|
||||
#if ACE_SIZEOF_INT == 4
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator/ (const u_long n) const
|
||||
{
|
||||
return operator/ ((ACE_UINT32) n);
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator/ (const long n) const
|
||||
{
|
||||
return operator/ ((ACE_UINT32) n);
|
||||
}
|
||||
|
||||
#else /* ACE_SIZEOF_INT != 4 */
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator/ (const u_int n) const
|
||||
{
|
||||
return operator/ ((ACE_UINT32) n);
|
||||
}
|
||||
|
||||
ACE_INLINE ACE_UINT32
|
||||
ACE_U_LongLong::operator/ (const int n) const
|
||||
{
|
||||
return operator/ ((ACE_UINT32) n);
|
||||
}
|
||||
#endif /* ACE_SIZEOF_INT != 4 */
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
#endif /* ACE_LACKS_LONGLONG_T || ACE_LACKS_UNSIGNEDLONGLONG_T */
|
||||
|
|
@ -1,126 +0,0 @@
|
|||
/* -*- C++ -*- */
|
||||
/**
|
||||
* @file Condition_Thread_Mutex.cpp
|
||||
*
|
||||
* $Id: Condition_Thread_Mutex.cpp 91286 2010-08-05 09:04:31Z johnnyw $
|
||||
*
|
||||
* Originally in Synch.cpp
|
||||
*
|
||||
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
|
||||
*/
|
||||
|
||||
#include "ace/Condition_Thread_Mutex.h"
|
||||
|
||||
#if defined (ACE_HAS_THREADS)
|
||||
|
||||
#if !defined (__ACE_INLINE__)
|
||||
#include "ace/Condition_Thread_Mutex.inl"
|
||||
#endif /* __ACE_INLINE__ */
|
||||
|
||||
#include "ace/Log_Msg.h"
|
||||
|
||||
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
ACE_ALLOC_HOOK_DEFINE(ACE_Condition_Thread_Mutex)
|
||||
|
||||
void
|
||||
ACE_Condition_Thread_Mutex::dump (void) const
|
||||
{
|
||||
#if defined (ACE_HAS_DUMP)
|
||||
// ACE_TRACE ("ACE_Condition_Thread_Mutex::dump");
|
||||
|
||||
ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
|
||||
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("\n")));
|
||||
#if defined (ACE_WIN32)
|
||||
ACE_DEBUG ((LM_DEBUG,
|
||||
ACE_TEXT ("waiters = %d\n"),
|
||||
this->cond_.waiters ()));
|
||||
#endif /* ACE_WIN32 */
|
||||
ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP));
|
||||
#endif /* ACE_HAS_DUMP */
|
||||
}
|
||||
|
||||
ACE_Condition_Thread_Mutex::ACE_Condition_Thread_Mutex (ACE_Thread_Mutex &m,
|
||||
const ACE_TCHAR *name,
|
||||
void *arg)
|
||||
: mutex_ (m),
|
||||
removed_ (false)
|
||||
{
|
||||
// ACE_TRACE ("ACE_Condition_Thread_Mutex::ACE_Condition_Thread_Mutex");
|
||||
if (ACE_OS::cond_init (&this->cond_,
|
||||
(short) USYNC_THREAD,
|
||||
name,
|
||||
arg) != 0)
|
||||
ACE_ERROR ((LM_ERROR,
|
||||
ACE_TEXT ("%p\n"),
|
||||
ACE_TEXT ("ACE_Condition_Thread_Mutex::ACE_Condition_Thread_Mutex")));
|
||||
}
|
||||
|
||||
ACE_Condition_Thread_Mutex::
|
||||
ACE_Condition_Thread_Mutex (ACE_Thread_Mutex &m,
|
||||
ACE_Condition_Attributes &attributes,
|
||||
const ACE_TCHAR *name,
|
||||
void *arg)
|
||||
: mutex_ (m),
|
||||
removed_ (false)
|
||||
{
|
||||
// ACE_TRACE ("ACE_Condition_Thread_Mutex::ACE_Condition_Thread_Mutex");
|
||||
if (ACE_OS::cond_init (&this->cond_, attributes.attributes_,
|
||||
name, arg) != 0)
|
||||
ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"),
|
||||
ACE_TEXT ("ACE_Condition_Thread_Mutex::ACE_Condition_Thread_Mutex")));
|
||||
}
|
||||
|
||||
ACE_Condition_Thread_Mutex::~ACE_Condition_Thread_Mutex (void)
|
||||
{
|
||||
// ACE_TRACE ("ACE_Condition_Thread_Mutex::~ACE_Condition_Thread_Mutex");
|
||||
this->remove ();
|
||||
}
|
||||
|
||||
// Peform an "alertable" timed wait. If the argument <abstime> == 0
|
||||
// then we do a regular <cond_wait>, else we do a timed wait for up to
|
||||
// <abstime> using the <cond_timedwait> function.
|
||||
|
||||
int
|
||||
ACE_Condition_Thread_Mutex::wait (void)
|
||||
{
|
||||
// ACE_TRACE ("ACE_Condition_Thread_Mutex::wait");
|
||||
return ACE_OS::cond_wait (&this->cond_, &this->mutex_.lock_);
|
||||
}
|
||||
|
||||
int
|
||||
ACE_Condition_Thread_Mutex::wait (ACE_Thread_Mutex &mutex,
|
||||
const ACE_Time_Value *abstime)
|
||||
{
|
||||
// ACE_TRACE ("ACE_Condition_Thread_Mutex::wait");
|
||||
return ACE_OS::cond_timedwait (&this->cond_,
|
||||
&mutex.lock_,
|
||||
const_cast <ACE_Time_Value *> (abstime));
|
||||
}
|
||||
|
||||
int
|
||||
ACE_Condition_Thread_Mutex::wait (const ACE_Time_Value *abstime)
|
||||
{
|
||||
// ACE_TRACE ("ACE_Condition_Thread_Mutex::wait");
|
||||
return this->wait (this->mutex_, abstime);
|
||||
}
|
||||
|
||||
int
|
||||
ACE_Condition_Thread_Mutex::signal (void)
|
||||
{
|
||||
// ACE_TRACE ("ACE_Condition_Thread_Mutex::signal");
|
||||
return ACE_OS::cond_signal (&this->cond_);
|
||||
}
|
||||
|
||||
int
|
||||
ACE_Condition_Thread_Mutex::broadcast (void)
|
||||
{
|
||||
// ACE_TRACE ("ACE_Condition_Thread_Mutex::broadcast");
|
||||
return ACE_OS::cond_broadcast (&this->cond_);
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
#endif /* ACE_HAS_THREADS */
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
// $Id: Countdown_Time.cpp 91287 2010-08-05 10:30:49Z johnnyw $
|
||||
|
||||
#include "ace/Countdown_Time.h"
|
||||
#include "ace/OS_NS_sys_time.h"
|
||||
|
||||
#if !defined (__ACE_INLINE__)
|
||||
#include "ace/Countdown_Time.inl"
|
||||
#endif /* __ACE_INLINE__ */
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
ACE_Countdown_Time::ACE_Countdown_Time (ACE_Time_Value *max_wait_time)
|
||||
: max_wait_time_ (max_wait_time),
|
||||
stopped_ (false)
|
||||
{
|
||||
this->start ();
|
||||
}
|
||||
|
||||
ACE_Countdown_Time::~ACE_Countdown_Time (void)
|
||||
{
|
||||
this->stop ();
|
||||
}
|
||||
|
||||
void
|
||||
ACE_Countdown_Time::start (void)
|
||||
{
|
||||
if (this->max_wait_time_ != 0)
|
||||
{
|
||||
this->start_time_ = ACE_OS::gettimeofday ();
|
||||
this->stopped_ = false;
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
ACE_Countdown_Time::stop (void)
|
||||
{
|
||||
if (this->max_wait_time_ != 0 && !this->stopped_)
|
||||
{
|
||||
ACE_Time_Value const elapsed_time =
|
||||
ACE_OS::gettimeofday () - this->start_time_;
|
||||
|
||||
if (elapsed_time >= ACE_Time_Value::zero &&
|
||||
*this->max_wait_time_ > elapsed_time)
|
||||
{
|
||||
*this->max_wait_time_ -= elapsed_time;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Used all of timeout.
|
||||
*this->max_wait_time_ = ACE_Time_Value::zero;
|
||||
// errno = ETIME;
|
||||
}
|
||||
this->stopped_ = true;
|
||||
}
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
// -*- C++ -*-
|
||||
//
|
||||
// $Id: Countdown_Time.inl 85368 2009-05-18 10:23:19Z johnnyw $
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
ACE_INLINE bool
|
||||
ACE_Countdown_Time::stopped (void) const
|
||||
{
|
||||
return stopped_;
|
||||
}
|
||||
|
||||
ACE_INLINE void
|
||||
ACE_Countdown_Time::update (void)
|
||||
{
|
||||
this->stop ();
|
||||
this->start ();
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libdir=@libdir@
|
||||
includedir=@includedir@
|
||||
|
||||
Name: ACE_ETCL
|
||||
Description: ACE Extended Trading Constraint Language Library
|
||||
Requires: ACE
|
||||
Version: @VERSION@
|
||||
Libs: -L${libdir} -lACE_ETCL
|
||||
Cflags: -I${includedir}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libdir=@libdir@
|
||||
includedir=@includedir@
|
||||
|
||||
Name: ACE_ETCL_Parser
|
||||
Description: ACE Extended Trading Constraint Language Parser Library
|
||||
Requires: ACE_ETCL
|
||||
Version: @VERSION@
|
||||
Libs: -L${libdir} -lACE_ETCL_Parser
|
||||
Cflags: -I${includedir}
|
||||
|
|
@ -1,301 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectName>ACE_ETCL_Parser</ProjectName>
|
||||
<ProjectGuid>{42B1A787-FECA-1BAD-007E-8A67757B007A}</ProjectGuid>
|
||||
<RootNamespace>ACE_ETCL_Parser</RootNamespace>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\..\lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\ACE_ETCL_Parser_vc10\I386\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">ACE_ETCL_Parserd</TargetName>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\ACE_ETCL_Parser_vc10\I386\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">ACE_ETCL_Parser</TargetName>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..\..\lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\ACE_ETCL_Parser_vc10\AMD64\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">ACE_ETCL_Parserd</TargetName>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..\..\lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\ACE_ETCL_Parser_vc10\AMD64\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ACE_ETCL_Parser</TargetName>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>ETCL_PARSER_BUILD_DLL;_DEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;MPC_LIB_MODIFIER="d";%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DisableSpecificWarnings>4355;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>1033</Culture>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>ACEd.lib;ACE_ETCLd.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)ACE_ETCL_Parserd.dll</OutputFile>
|
||||
<AdditionalLibraryDirectories>.;..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ImportLibrary>..\..\lib\ACE_ETCL_Parserd.lib</ImportLibrary>
|
||||
</Link>
|
||||
<!-- "postclean" was made-up by MPC for use by vs_postclean.pl.
|
||||
Check if msbuild has any support for a custom post-cleaning step
|
||||
-->
|
||||
<!-- No known equivalent for DeploymentTool in vc10:
|
||||
-->
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>ETCL_PARSER_BUILD_DLL;NDEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DisableSpecificWarnings>4355;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>1033</Culture>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>ACE.lib;ACE_ETCL.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)ACE_ETCL_Parser.dll</OutputFile>
|
||||
<AdditionalLibraryDirectories>.;..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<ImportLibrary>..\..\lib\ACE_ETCL_Parser.lib</ImportLibrary>
|
||||
</Link>
|
||||
<!-- "postclean" was made-up by MPC for use by vs_postclean.pl.
|
||||
Check if msbuild has any support for a custom post-cleaning step
|
||||
-->
|
||||
<!-- No known equivalent for DeploymentTool in vc10:
|
||||
-->
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<TargetEnvironment>x64</TargetEnvironment>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>ETCL_PARSER_BUILD_DLL;_DEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_AMD64_;_WIN64;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;MPC_LIB_MODIFIER="d";%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DisableSpecificWarnings>4355;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>1033</Culture>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>ACEd.lib;ACE_ETCLd.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)ACE_ETCL_Parserd.dll</OutputFile>
|
||||
<AdditionalLibraryDirectories>.;..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ImportLibrary>..\..\lib\ACE_ETCL_Parserd.lib</ImportLibrary>
|
||||
<!--
|
||||
Though we can set TargetMachine explicitly, VC++
|
||||
can figure it out by project type. We don't need
|
||||
to set it by ourselves.
|
||||
-->
|
||||
<!-- <TargetMachine>0</TargetMachine>-->
|
||||
<AdditionalOptions>/machine:AMD64 %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
<!-- "postclean" was made-up by MPC for use by vs_postclean.pl.
|
||||
Check if msbuild has any support for a custom post-cleaning step
|
||||
-->
|
||||
<!-- No known equivalent for DeploymentTool in vc10:
|
||||
-->
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<TargetEnvironment>x64</TargetEnvironment>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>ETCL_PARSER_BUILD_DLL;NDEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_AMD64_;_WIN64;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DisableSpecificWarnings>4355;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>1033</Culture>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>ACE.lib;ACE_ETCL.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)ACE_ETCL_Parser.dll</OutputFile>
|
||||
<AdditionalLibraryDirectories>.;..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<ImportLibrary>..\..\lib\ACE_ETCL_Parser.lib</ImportLibrary>
|
||||
<!--
|
||||
Though we can set TargetMachine explicitly, VC++
|
||||
can figure it out by project type. We don't need
|
||||
to set it by ourselves.
|
||||
-->
|
||||
<!-- <TargetMachine>0</TargetMachine>-->
|
||||
<AdditionalOptions>/machine:AMD64 %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
<!-- "postclean" was made-up by MPC for use by vs_postclean.pl.
|
||||
Check if msbuild has any support for a custom post-cleaning step
|
||||
-->
|
||||
<!-- No known equivalent for DeploymentTool in vc10:
|
||||
-->
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="ETCL_Interpreter.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="ETCL_l.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="ETCL_y.cpp">
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="ETCL_Interpreter.h" />
|
||||
<ClInclude Include="etcl_parser_export.h" />
|
||||
<ClInclude Include="ETCL_y.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="ETCL.mpc">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="ACE_ETCL_Parser.pc.in">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Source Files">
|
||||
<UniqueIdentifier>{B1F27843-FECA-1BAD-007E-8A67757B007A}</UniqueIdentifier>
|
||||
<Extensions>cpp;cxx;cc;c;C</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Header Files">
|
||||
<UniqueIdentifier>{06319535-FECA-1BAD-007E-8A67757B007A}</UniqueIdentifier>
|
||||
<Extensions>h;hpp;hxx;hh</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Build Files">
|
||||
<UniqueIdentifier>{A1909F1C-FECA-1BAD-007E-8A67757B007A}</UniqueIdentifier>
|
||||
<Extensions>mpc;mpb;mwc</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Pkgconfig Files">
|
||||
<UniqueIdentifier>{8441A3A3-FECA-1BAD-007E-8A67757B007A}</UniqueIdentifier>
|
||||
<Extensions>pcin</Extensions>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="ETCL_Interpreter.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="ETCL_l.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="ETCL_y.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="ETCL_Interpreter.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="etcl_parser_export.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="ETCL_y.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="ETCL.mpc">
|
||||
<Filter>Build Files</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="ACE_ETCL_Parser.pc.in">
|
||||
<Filter>Pkgconfig Files</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
@ -1,302 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectName>ACE_ETCL</ProjectName>
|
||||
<ProjectGuid>{17692659-FECA-1BAD-007E-8A67757B007A}</ProjectGuid>
|
||||
<RootNamespace>ACE_ETCL</RootNamespace>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\..\lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\ACE_ETCL_vc10\I386\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">ACE_ETCLd</TargetName>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\ACE_ETCL_vc10\I386\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">ACE_ETCL</TargetName>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..\..\lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\ACE_ETCL_vc10\AMD64\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">ACE_ETCLd</TargetName>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..\..\lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\ACE_ETCL_vc10\AMD64\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ACE_ETCL</TargetName>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>ACE_ETCL_BUILD_DLL;_DEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;MPC_LIB_MODIFIER="d";%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DisableSpecificWarnings>4355;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>1033</Culture>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>ACEd.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)ACE_ETCLd.dll</OutputFile>
|
||||
<AdditionalLibraryDirectories>.;..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ImportLibrary>..\..\lib\ACE_ETCLd.lib</ImportLibrary>
|
||||
</Link>
|
||||
<!-- "postclean" was made-up by MPC for use by vs_postclean.pl.
|
||||
Check if msbuild has any support for a custom post-cleaning step
|
||||
-->
|
||||
<!-- No known equivalent for DeploymentTool in vc10:
|
||||
-->
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>ACE_ETCL_BUILD_DLL;NDEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DisableSpecificWarnings>4355;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>1033</Culture>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>ACE.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)ACE_ETCL.dll</OutputFile>
|
||||
<AdditionalLibraryDirectories>.;..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<ImportLibrary>..\..\lib\ACE_ETCL.lib</ImportLibrary>
|
||||
</Link>
|
||||
<!-- "postclean" was made-up by MPC for use by vs_postclean.pl.
|
||||
Check if msbuild has any support for a custom post-cleaning step
|
||||
-->
|
||||
<!-- No known equivalent for DeploymentTool in vc10:
|
||||
-->
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<TargetEnvironment>x64</TargetEnvironment>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>ACE_ETCL_BUILD_DLL;_DEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_AMD64_;_WIN64;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;MPC_LIB_MODIFIER="d";%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DisableSpecificWarnings>4355;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>1033</Culture>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>ACEd.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)ACE_ETCLd.dll</OutputFile>
|
||||
<AdditionalLibraryDirectories>.;..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ImportLibrary>..\..\lib\ACE_ETCLd.lib</ImportLibrary>
|
||||
<!--
|
||||
Though we can set TargetMachine explicitly, VC++
|
||||
can figure it out by project type. We don't need
|
||||
to set it by ourselves.
|
||||
-->
|
||||
<!-- <TargetMachine>0</TargetMachine>-->
|
||||
<AdditionalOptions>/machine:AMD64 %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
<!-- "postclean" was made-up by MPC for use by vs_postclean.pl.
|
||||
Check if msbuild has any support for a custom post-cleaning step
|
||||
-->
|
||||
<!-- No known equivalent for DeploymentTool in vc10:
|
||||
-->
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<TargetEnvironment>x64</TargetEnvironment>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>ACE_ETCL_BUILD_DLL;NDEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_AMD64_;_WIN64;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DisableSpecificWarnings>4355;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>1033</Culture>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>ACE.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)ACE_ETCL.dll</OutputFile>
|
||||
<AdditionalLibraryDirectories>.;..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<ImportLibrary>..\..\lib\ACE_ETCL.lib</ImportLibrary>
|
||||
<!--
|
||||
Though we can set TargetMachine explicitly, VC++
|
||||
can figure it out by project type. We don't need
|
||||
to set it by ourselves.
|
||||
-->
|
||||
<!-- <TargetMachine>0</TargetMachine>-->
|
||||
<AdditionalOptions>/machine:AMD64 %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
<!-- "postclean" was made-up by MPC for use by vs_postclean.pl.
|
||||
Check if msbuild has any support for a custom post-cleaning step
|
||||
-->
|
||||
<!-- No known equivalent for DeploymentTool in vc10:
|
||||
-->
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="ETCL_Constraint.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="ETCL_Constraint_Visitor.cpp">
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="ace_etcl_export.h" />
|
||||
<ClInclude Include="ETCL_Constraint.h" />
|
||||
<ClInclude Include="ETCL_Constraint_Visitor.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="ETCL.mpc">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="ACE_ETCL.pc.in">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="ETCL_Constraint.inl" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
|
|
@ -1,59 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Source Files">
|
||||
<UniqueIdentifier>{B1F27843-FECA-1BAD-007E-8A67757B007A}</UniqueIdentifier>
|
||||
<Extensions>cpp;cxx;cc;c;C</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Header Files">
|
||||
<UniqueIdentifier>{06319535-FECA-1BAD-007E-8A67757B007A}</UniqueIdentifier>
|
||||
<Extensions>h;hpp;hxx;hh</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Build Files">
|
||||
<UniqueIdentifier>{A1909F1C-FECA-1BAD-007E-8A67757B007A}</UniqueIdentifier>
|
||||
<Extensions>mpc;mpb;mwc</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Pkgconfig Files">
|
||||
<UniqueIdentifier>{8441A3A3-FECA-1BAD-007E-8A67757B007A}</UniqueIdentifier>
|
||||
<Extensions>pcin</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Inline Files">
|
||||
<UniqueIdentifier>{763028EF-FECA-1BAD-007E-8A67757B007A}</UniqueIdentifier>
|
||||
<Extensions>i;ipp;inl</Extensions>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="ETCL_Constraint.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="ETCL_Constraint_Visitor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="ace_etcl_export.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="ETCL_Constraint.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="ETCL_Constraint_Visitor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="ETCL.mpc">
|
||||
<Filter>Build Files</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="ACE_ETCL.pc.in">
|
||||
<Filter>Pkgconfig Files</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="ETCL_Constraint.inl">
|
||||
<Filter>Inline Files</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
@ -1,159 +0,0 @@
|
|||
%option noyywrap
|
||||
|
||||
%{
|
||||
// ETCL.ll,v 1.5 2005/11/16 07:53:24 ossama Exp
|
||||
// ========================================================================
|
||||
//
|
||||
// = LIBRARY
|
||||
// orbsvcs/ECTL
|
||||
//
|
||||
// = FILENAME
|
||||
// ETCL.ll
|
||||
//
|
||||
// = AUTHOR
|
||||
// Carlos O'Ryan <coryan@uci.edu> based on previous work by
|
||||
// Seth Widoff <sbw1@cs.wustl.edu>
|
||||
//
|
||||
// ========================================================================
|
||||
|
||||
#include "ace/ETCL/ETCL_Interpreter.h"
|
||||
#include "ace/ETCL/ETCL_y.h"
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
static const char * extract_string(char*);
|
||||
|
||||
#define YY_LEX_DEBUG
|
||||
|
||||
#ifdef CONSTRAINT_DEBUG
|
||||
#define YY_LEX_DEBUG OS::fprintf(stderr, "%s\n", yytext)
|
||||
#endif /* CONSTRAINT_DEBUG */
|
||||
|
||||
#define YY_DECL int ETCL_yylex (ETCL_YYSTYPE *lvalp, void* state)
|
||||
|
||||
#define YY_BREAK
|
||||
#define YY_NO_UNPUT
|
||||
|
||||
%}
|
||||
|
||||
white_space [ \t]
|
||||
letter [a-zA-Z]
|
||||
digit [0-9]
|
||||
alpha_num ({letter}|{digit})
|
||||
integer {digit}+
|
||||
float ({digit}*\.{digit}+)([eE][-+]?{digit}+)?
|
||||
string '(([^'\\]*)|([^'\\]*\\')|([^'\\]*\\\\))*'
|
||||
base {letter}({alpha_num}|[_])*
|
||||
ident {base}|\\{base}
|
||||
newline \n
|
||||
|
||||
%%
|
||||
|
||||
min { YY_LEX_DEBUG; return ETCL_MIN; }
|
||||
max { YY_LEX_DEBUG; return ETCL_MAX; }
|
||||
first { YY_LEX_DEBUG; return ETCL_FIRST; }
|
||||
random { YY_LEX_DEBUG; return ETCL_RANDOM; }
|
||||
with { YY_LEX_DEBUG; return ETCL_WITH; }
|
||||
exist { YY_LEX_DEBUG; return ETCL_EXIST; }
|
||||
not { YY_LEX_DEBUG; return ETCL_NOT; }
|
||||
and { YY_LEX_DEBUG; return ETCL_AND; }
|
||||
or { YY_LEX_DEBUG; return ETCL_OR; }
|
||||
in { YY_LEX_DEBUG; return ETCL_IN; }
|
||||
"~" { YY_LEX_DEBUG; return ETCL_TWIDDLE; }
|
||||
"+" { YY_LEX_DEBUG; return ETCL_PLUS; }
|
||||
"-" { YY_LEX_DEBUG; return ETCL_MINUS; }
|
||||
"*" { YY_LEX_DEBUG; return ETCL_MULT; }
|
||||
"/" { YY_LEX_DEBUG; return ETCL_DIV; }
|
||||
"<" { YY_LEX_DEBUG; return ETCL_LT; }
|
||||
"<=" { YY_LEX_DEBUG; return ETCL_LE; }
|
||||
">" { YY_LEX_DEBUG; return ETCL_GT; }
|
||||
">=" { YY_LEX_DEBUG; return ETCL_GE; }
|
||||
"==" { YY_LEX_DEBUG; return ETCL_EQ; }
|
||||
"!=" { YY_LEX_DEBUG; return ETCL_NE; }
|
||||
"(" { YY_LEX_DEBUG; return ETCL_LPAREN; }
|
||||
")" { YY_LEX_DEBUG; return ETCL_RPAREN; }
|
||||
"$" { YY_LEX_DEBUG; return ETCL_DOLLAR; }
|
||||
"." { YY_LEX_DEBUG; return ETCL_DOT; }
|
||||
"default" { YY_LEX_DEBUG; return ETCL_DEFAULT; }
|
||||
"_d" { YY_LEX_DEBUG; return ETCL_DISCRIMINANT; }
|
||||
"_type_id" { YY_LEX_DEBUG; return ETCL_TYPE_ID; }
|
||||
"_repos_id" { YY_LEX_DEBUG; return ETCL_REPOS_ID; }
|
||||
"_length" { YY_LEX_DEBUG; return ETCL_LENGTH; }
|
||||
"[" { YY_LEX_DEBUG; return ETCL_LBRA; }
|
||||
"]" { YY_LEX_DEBUG; return ETCL_RBRA; }
|
||||
TRUE {
|
||||
lvalp->constraint =
|
||||
new ETCL_Literal_Constraint ((CORBA::Boolean) 1);
|
||||
YY_LEX_DEBUG; return ETCL_BOOLEAN;
|
||||
}
|
||||
FALSE {
|
||||
lvalp->constraint =
|
||||
new ETCL_Literal_Constraint ((CORBA::Boolean) 0);
|
||||
YY_LEX_DEBUG; return ETCL_BOOLEAN;
|
||||
}
|
||||
{integer} {
|
||||
lvalp->constraint =
|
||||
new ETCL_Literal_Constraint (ACE_OS::atoi (yytext));
|
||||
YY_LEX_DEBUG; return ETCL_INTEGER;
|
||||
}
|
||||
{float} {
|
||||
double v;
|
||||
sscanf (yytext, "%lf", &v);
|
||||
lvalp->constraint =
|
||||
new ETCL_Literal_Constraint (v);
|
||||
YY_LEX_DEBUG; return ETCL_FLOAT;
|
||||
}
|
||||
{string} {
|
||||
lvalp->constraint =
|
||||
new ETCL_Literal_Constraint (extract_string (yytext));
|
||||
YY_LEX_DEBUG; return ETCL_STRING;
|
||||
}
|
||||
{ident} {
|
||||
lvalp->constraint =
|
||||
new ETCL_Identifier (yytext);
|
||||
YY_LEX_DEBUG; return ETCL_IDENT;
|
||||
}
|
||||
{white_space} {
|
||||
YY_LEX_DEBUG; break; // Ignore
|
||||
}
|
||||
. {
|
||||
YY_LEX_DEBUG; break; // @@ TODO
|
||||
}
|
||||
%%
|
||||
|
||||
const char*
|
||||
extract_string(char* str)
|
||||
{
|
||||
char *t = str;
|
||||
for (char * i = str + 1; *i != '\''; ++i, ++t)
|
||||
{
|
||||
if (*i == '\\')
|
||||
{
|
||||
++i;
|
||||
if (*i == 0)
|
||||
return 0;
|
||||
else if (*i == 't')
|
||||
*t = '\t';
|
||||
else if (*i == 'n')
|
||||
*t = '\n';
|
||||
else if (*i == '\\')
|
||||
*t = '\\';
|
||||
else
|
||||
*t = *i;
|
||||
continue;
|
||||
}
|
||||
|
||||
*t = *i;
|
||||
}
|
||||
|
||||
*t = '\0';
|
||||
return str;
|
||||
}
|
||||
|
||||
int
|
||||
yywrap (void)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
|
|
@ -1,64 +0,0 @@
|
|||
// -*- MPC -*-
|
||||
// $Id: ETCL.mpc 90826 2010-06-24 09:07:33Z johnnyw $
|
||||
|
||||
project(ACE_ETCL) : acelib, install, ace_output {
|
||||
sharedname = ACE_ETCL
|
||||
dynamicflags += ACE_ETCL_BUILD_DLL
|
||||
|
||||
Source_Files {
|
||||
ETCL_Constraint.cpp
|
||||
ETCL_Constraint_Visitor.cpp
|
||||
}
|
||||
|
||||
Header_Files {
|
||||
ETCL_Constraint.h
|
||||
ETCL_Constraint_Visitor.h
|
||||
ace_etcl_export.h
|
||||
}
|
||||
|
||||
Inline_Files {
|
||||
ETCL_Constraint.inl
|
||||
}
|
||||
|
||||
Template_Files {
|
||||
}
|
||||
|
||||
Pkgconfig_Files {
|
||||
ACE_ETCL.pc.in
|
||||
}
|
||||
|
||||
specific {
|
||||
install_dir = ace/ETCL
|
||||
}
|
||||
}
|
||||
|
||||
project(ACE_ETCL_Parser) : acelib, ace_etcl, install, ace_output {
|
||||
sharedname = ACE_ETCL_Parser
|
||||
dynamicflags += ETCL_PARSER_BUILD_DLL
|
||||
|
||||
Source_Files {
|
||||
ETCL_Interpreter.cpp
|
||||
ETCL_l.cpp
|
||||
ETCL_y.cpp
|
||||
}
|
||||
|
||||
Header_Files {
|
||||
ETCL_Interpreter.h
|
||||
ETCL_y.h
|
||||
etcl_parser_export.h
|
||||
}
|
||||
|
||||
Inline_Files {
|
||||
}
|
||||
|
||||
Template_Files {
|
||||
}
|
||||
|
||||
Pkgconfig_Files {
|
||||
ACE_ETCL_Parser.pc.in
|
||||
}
|
||||
|
||||
specific {
|
||||
install_dir = ace/ETCL
|
||||
}
|
||||
}
|
||||
|
|
@ -1,269 +0,0 @@
|
|||
%{
|
||||
// $Id: ETCL.yy 81640 2008-05-07 19:04:11Z parsons $
|
||||
// ========================================================================
|
||||
//
|
||||
// = LIBRARY
|
||||
// orbsvcs / Extended Trader Constraint Language parser.
|
||||
//
|
||||
// = FILENAME
|
||||
// ETCL.yy
|
||||
//
|
||||
// = AUTHOR
|
||||
// Carlos O'Ryan <coryan@uci.edu> based on previous work by
|
||||
// Seth Widoff <sbw1@cs.wustl.edu>
|
||||
// Jeff Parsons <j.parsons@vanderbilt.edu>
|
||||
//
|
||||
// ========================================================================
|
||||
|
||||
#include "ace/ETCL/ETCL_y.h"
|
||||
#include "ace/ETCL/ETCL_constraint.h"
|
||||
#include "ace/ETCL/ETCL_Interpreter.h"
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
extern int yylex (void);
|
||||
extern void yyflush_current_buffer (void);
|
||||
|
||||
static void yyerror (const char *)
|
||||
{
|
||||
// @@ TODO
|
||||
// Ignore error messages
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
%}
|
||||
|
||||
%token ETCL_GT
|
||||
%token ETCL_GE
|
||||
%token ETCL_LT
|
||||
%token ETCL_LE
|
||||
%token ETCL_EQ
|
||||
%token ETCL_NE
|
||||
%token ETCL_EXIST
|
||||
%token ETCL_DEFAULT
|
||||
%token ETCL_AND
|
||||
%token ETCL_OR
|
||||
%token ETCL_NOT
|
||||
%token ETCL_IN
|
||||
%token ETCL_TWIDDLE
|
||||
%token ETCL_BOOLEAN
|
||||
%token ETCL_PLUS
|
||||
%token ETCL_MINUS
|
||||
%token ETCL_MULT
|
||||
%token ETCL_DIV
|
||||
%token ETCL_UMINUS
|
||||
%token ETCL_INTEGER
|
||||
%token ETCL_FLOAT
|
||||
%token ETCL_STRING
|
||||
%token ETCL_RPAREN
|
||||
%token ETCL_LPAREN
|
||||
%token ETCL_RBRA
|
||||
%token ETCL_LBRA
|
||||
%token ETCL_IDENT
|
||||
%token ETCL_UNSIGNED
|
||||
%token ETCL_SIGNED
|
||||
%token ETCL_DOUBLE
|
||||
%token ETCL_CONSTRAINT
|
||||
%token ETCL_COMPONENT
|
||||
%token ETCL_WITH
|
||||
%token ETCL_MAX
|
||||
%token ETCL_MIN
|
||||
%token ETCL_FIRST
|
||||
%token ETCL_RANDOM
|
||||
%token ETCL_DOLLAR
|
||||
%token ETCL_DOT
|
||||
%token ETCL_DISCRIMINANT
|
||||
%token ETCL_LENGTH
|
||||
%token ETCL_TYPE_ID
|
||||
%token ETCL_REPOS_ID
|
||||
|
||||
|
||||
%type <constraint> ETCL_IDENT
|
||||
%type <constraint> ETCL_BOOLEAN
|
||||
%type <constraint> ETCL_STRING
|
||||
%type <constraint> ETCL_FLOAT
|
||||
%type <constraint> ETCL_INTEGER
|
||||
%type <constraint> expr_in
|
||||
%type <constraint> constraint preference bool_or bool_and bool_compare
|
||||
%type <constraint> expr_in expr_twiddle expr term factor_not factor
|
||||
%type <constraint> union_pos union_val component_array
|
||||
%type <constraint> component_array component_assoc component_pos
|
||||
%type <constraint> component_dot component_ext component
|
||||
|
||||
%start constraint
|
||||
|
||||
%%
|
||||
|
||||
constraint: bool_or
|
||||
| preference
|
||||
;
|
||||
|
||||
preference: ETCL_MIN bool_or
|
||||
{ $$ = new ETCL_PREFERENCE_CLASS (ETCL_MIN, $2); }
|
||||
| ETCL_MAX bool_or
|
||||
{ $$ = new ETCL_PREFERENCE_CLASS (ETCL_MAX, $2); }
|
||||
| ETCL_WITH bool_or
|
||||
{ $$ = new ETCL_PREFERENCE_CLASS (ETCL_WITH, $2); }
|
||||
| ETCL_FIRST
|
||||
{ $$ = new ETCL_PREFERENCE_CLASS (ETCL_FIRST); }
|
||||
| ETCL_RANDOM
|
||||
{ $$ = new ETCL_PREFERENCE_CLASS (ETCL_RANDOM); }
|
||||
;
|
||||
|
||||
bool_or: bool_or ETCL_OR bool_and
|
||||
{ $$ = new ETCL_BINARY_EXPR_CLASS (ETCL_OR, $1, $3); }
|
||||
| bool_and
|
||||
;
|
||||
|
||||
bool_and: bool_and ETCL_AND bool_compare
|
||||
{ $$ = new ETCL_BINARY_EXPR_CLASS (ETCL_AND, $1, $3); }
|
||||
| bool_compare
|
||||
;
|
||||
|
||||
bool_compare: expr_in ETCL_EQ expr_in
|
||||
{ $$ = new ETCL_BINARY_EXPR_CLASS (ETCL_EQ, $1, $3); }
|
||||
| expr_in ETCL_NE expr_in
|
||||
{ $$ = new ETCL_BINARY_EXPR_CLASS (ETCL_NE, $1, $3); }
|
||||
| expr_in ETCL_GT expr_in
|
||||
{ $$ = new ETCL_BINARY_EXPR_CLASS (ETCL_GT, $1, $3); }
|
||||
| expr_in ETCL_GE expr_in
|
||||
{ $$ = new ETCL_BINARY_EXPR_CLASS (ETCL_GE, $1, $3); }
|
||||
| expr_in ETCL_LT expr_in
|
||||
{ $$ = new ETCL_BINARY_EXPR_CLASS (ETCL_LT, $1, $3); }
|
||||
| expr_in ETCL_LE expr_in
|
||||
{ $$ = new ETCL_BINARY_EXPR_CLASS (ETCL_LE, $1, $3); }
|
||||
| expr_in
|
||||
;
|
||||
|
||||
expr_in: expr_twiddle ETCL_IN component
|
||||
{ $$ = new ETCL_BINARY_EXPR_CLASS (ETCL_IN, $1, $3); }
|
||||
| expr_twiddle ETCL_IN ETCL_DOLLAR component
|
||||
{ $$ = new ETCL_BINARY_EXPR_CLASS (ETCL_IN, $1, $4); }
|
||||
| expr_twiddle
|
||||
;
|
||||
|
||||
expr_twiddle: expr ETCL_TWIDDLE expr
|
||||
{ $$ = new ETCL_BINARY_EXPR_CLASS (ETCL_TWIDDLE, $1, $3); }
|
||||
| expr
|
||||
;
|
||||
|
||||
expr: expr ETCL_PLUS term
|
||||
{ $$ = new ETCL_BINARY_EXPR_CLASS (ETCL_PLUS, $1, $3); }
|
||||
| expr ETCL_MINUS term
|
||||
{ $$ = new ETCL_BINARY_EXPR_CLASS (ETCL_MINUS, $1, $3); }
|
||||
| term
|
||||
;
|
||||
|
||||
term: term ETCL_MULT factor_not
|
||||
{ $$ = new ETCL_BINARY_EXPR_CLASS (ETCL_MULT, $1, $3); }
|
||||
| term ETCL_DIV factor_not
|
||||
{ $$ = new ETCL_BINARY_EXPR_CLASS (ETCL_DIV, $1, $3); }
|
||||
| factor_not
|
||||
;
|
||||
|
||||
factor_not: ETCL_NOT factor
|
||||
{ $$ = new ETCL_UNARY_EXPR_CLASS (ETCL_NOT, $2); }
|
||||
| factor
|
||||
;
|
||||
|
||||
factor: ETCL_LPAREN bool_or ETCL_RPAREN
|
||||
{ $$ = $2; }
|
||||
| ETCL_INTEGER
|
||||
{ $$ = $1; }
|
||||
| ETCL_PLUS ETCL_INTEGER
|
||||
{ $$ = new ETCL_UNARY_EXPR_CLASS (ETCL_PLUS, $2); }
|
||||
| ETCL_MINUS ETCL_INTEGER
|
||||
{ $$ = new ETCL_UNARY_EXPR_CLASS (ETCL_MINUS, $2); }
|
||||
| ETCL_FLOAT
|
||||
{ $$ = $1; }
|
||||
| ETCL_PLUS ETCL_FLOAT
|
||||
{ $$ = new ETCL_UNARY_EXPR_CLASS (ETCL_PLUS, $2); }
|
||||
| ETCL_MINUS ETCL_FLOAT
|
||||
{ $$ = new ETCL_UNARY_EXPR_CLASS (ETCL_MINUS, $2); }
|
||||
| ETCL_STRING
|
||||
{ $$ = $1; }
|
||||
| ETCL_BOOLEAN
|
||||
{ $$ = $1; }
|
||||
| ETCL_EXIST ETCL_IDENT
|
||||
{ $$ = new ETCL_EXIST_CLASS ($2); }
|
||||
| ETCL_EXIST ETCL_DOLLAR component
|
||||
{ $$ = new ETCL_EXIST_CLASS ($3); }
|
||||
| ETCL_DEFAULT ETCL_DOLLAR component
|
||||
{ $$ = new ETCL_DEFAULT_CLASS ($3); }
|
||||
| ETCL_DOLLAR component
|
||||
{ $$ = new ETCL_EVAL_CLASS ($2); }
|
||||
| ETCL_IDENT
|
||||
{ $$ = $1; }
|
||||
;
|
||||
|
||||
component: /* empty */
|
||||
{ $$ = 0; }
|
||||
| ETCL_DOT component_dot
|
||||
{ $$ = new ETCL_DOT_CLASS ($2); }
|
||||
|
||||
| ETCL_IDENT component_ext
|
||||
{ $$ = new ETCL_COMPONENT_CLASS ($1, $2); }
|
||||
|
||||
| component_array
|
||||
| component_assoc
|
||||
;
|
||||
|
||||
component_ext: /* empty */
|
||||
{ $$ = 0; }
|
||||
| ETCL_DOT component_dot
|
||||
{ $$ = new ETCL_Dot ($2); }
|
||||
|
||||
| component_array
|
||||
| component_assoc
|
||||
;
|
||||
|
||||
component_dot: ETCL_IDENT component_ext
|
||||
{ $$ = new ETCL_COMPONENT_CLASS ($1, $2); }
|
||||
| ETCL_LENGTH
|
||||
{ $$ = new ETCL_SPECIAL_CLASS (ETCL_LENGTH); }
|
||||
| ETCL_DISCRIMINANT
|
||||
{ $$ = new ETCL_SPECIAL_CLASS (ETCL_DISCRIMINANT); }
|
||||
| ETCL_TYPE_ID
|
||||
{ $$ = new ETCL_SPECIAL_CLASS (ETCL_TYPE_ID); }
|
||||
| ETCL_REPOS_ID
|
||||
{ $$ = new ETCL_SPECIAL_CLASS (ETCL_REPOS_ID); }
|
||||
| component_pos
|
||||
| union_pos
|
||||
;
|
||||
|
||||
component_array: ETCL_LBRA ETCL_INTEGER ETCL_RBRA component_ext
|
||||
{ $$ = new ETCL_COMPONENT_ARRAY_CLASS ($2, $4); }
|
||||
;
|
||||
|
||||
component_assoc: ETCL_LPAREN ETCL_IDENT ETCL_RPAREN component_ext
|
||||
{ $$ = new ETCL_COMPONENT_ASSOC_CLASS ($2, $4); }
|
||||
;
|
||||
|
||||
component_pos: ETCL_INTEGER component_ext
|
||||
{ $$ = new ETCL_COMPONENT_POS_CLASS ($1, $2); }
|
||||
;
|
||||
|
||||
union_pos: ETCL_LPAREN union_val ETCL_RPAREN component_ext
|
||||
{ $$ = new ETCL_UNION_POS_CLASS ($2, $4); }
|
||||
;
|
||||
|
||||
union_val: /* empty */
|
||||
{ $$ = 0; }
|
||||
| ETCL_INTEGER
|
||||
{ $$ = new ETCL_UNION_VALUE_CLASS (+1, $1); }
|
||||
| ETCL_PLUS ETCL_INTEGER
|
||||
{ $$ = new ETCL_UNION_VALUE_CLASS (+1, $2); }
|
||||
| ETCL_MINUS ETCL_INTEGER
|
||||
{ $$ = new ETCL_UNION_VALUE_CLASS (-1, $2); }
|
||||
| ETCL_STRING
|
||||
{ $$ = new ETCL_UNION_VALUE_CLASS ($1); }
|
||||
;
|
||||
|
||||
%%
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
|
|
@ -1,512 +0,0 @@
|
|||
--- bison_gen\ETCL_l.cpp 2005-07-19 10:09:28.523824100 -0700
|
||||
+++ ETCL_l.cpp 2005-07-19 09:47:22.138585300 -0700
|
||||
@@ -1,15 +1,14 @@
|
||||
+
|
||||
/* A lexical scanner generated by flex */
|
||||
|
||||
/* Scanner skeleton version:
|
||||
- * $Header$
|
||||
+ * $Id: ETCL_l.cpp.diff 91730 2010-09-13 09:31:11Z johnnyw $
|
||||
*/
|
||||
|
||||
#define FLEX_SCANNER
|
||||
#define YY_FLEX_MAJOR_VERSION 2
|
||||
#define YY_FLEX_MINOR_VERSION 5
|
||||
|
||||
-#include <stdio.h>
|
||||
-
|
||||
|
||||
/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
|
||||
#ifdef c_plusplus
|
||||
@@ -21,8 +20,7 @@
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
-#include <stdlib.h>
|
||||
-#include <unistd.h>
|
||||
+#include "ace/OS_NS_unistd.h"
|
||||
+#include "ace/OS_NS_stdio.h"
|
||||
|
||||
/* Use prototypes in function declarations. */
|
||||
#define YY_USE_PROTOS
|
||||
@@ -262,8 +260,8 @@
|
||||
#define YY_AT_BOL() (yy_current_buffer->yy_at_bol)
|
||||
|
||||
|
||||
-#define yywrap() 1
|
||||
-#define YY_SKIP_YYWRAP
|
||||
+//#define yywrap() 1
|
||||
+//#define YY_SKIP_YYWRAP
|
||||
typedef unsigned char YY_CHAR;
|
||||
FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
|
||||
typedef int yy_state_type;
|
||||
@@ -444,15 +442,15 @@
|
||||
#define YY_MORE_ADJ 0
|
||||
#define YY_RESTORE_YY_MORE_OFFSET
|
||||
char *yytext;
|
||||
-#line 1 "ETCL.ll"
|
||||
+//#line 1 "ETCL/ETCL.ll"
|
||||
#define INITIAL 0
|
||||
-#line 4 "ETCL.ll"
|
||||
+//#line 4 "ETCL/ETCL.ll"
|
||||
// $Id: ETCL_l.cpp.diff 91730 2010-09-13 09:31:11Z johnnyw $
|
||||
// ========================================================================
|
||||
//
|
||||
// = LIBRARY
|
||||
// orbsvcs/ECTL
|
||||
-//
|
||||
+//
|
||||
// = FILENAME
|
||||
// ETCL.ll
|
||||
//
|
||||
@@ -462,12 +460,12 @@
|
||||
//
|
||||
// ========================================================================
|
||||
|
||||
-#include "ace/OS.h"
|
||||
-
|
||||
+#include "ETCL_Interpreter.h"
|
||||
#include "ETCL_Constraint.h"
|
||||
#include "ETCL_y.h"
|
||||
|
||||
-static const char * extract_string(char*);
|
||||
+static const char* extract_string(char*);
|
||||
+//static const char * extract_string(char*);
|
||||
|
||||
#define TAO_YY_LEX_DEBUG
|
||||
|
||||
@@ -475,12 +473,11 @@
|
||||
#define TAO_YY_LEX_DEBUG TAO_OS::fprintf(stderr, "%s\n", yytext)
|
||||
#endif /* TAO_CONSTRAINT_DEBUG */
|
||||
|
||||
-#define YY_DECL int TAO_ETCL_yylex (TAO_ETCL_YYSTYPE *lvalp, void* state)
|
||||
+//#define YY_DECL int TAO_ETCL_yylex (TAO_ETCL_YYSTYPE *lvalp, void* state)
|
||||
|
||||
#define YY_BREAK
|
||||
#define YY_NO_UNPUT
|
||||
|
||||
-#line 484 "lex.yy.c"
|
||||
|
||||
/* Macros after this point can all be overridden by user definitions in
|
||||
* section 1.
|
||||
@@ -494,10 +491,6 @@
|
||||
#endif
|
||||
#endif
|
||||
|
||||
-#ifndef YY_NO_UNPUT
|
||||
-static void yyunput YY_PROTO(( int c, char *buf_ptr ));
|
||||
-#endif
|
||||
-
|
||||
#ifndef yytext_ptr
|
||||
static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int ));
|
||||
#endif
|
||||
@@ -556,11 +549,11 @@
|
||||
|
||||
/* Copy whatever the last rule matched to the standard output. */
|
||||
|
||||
-#ifndef ECHO
|
||||
+#ifndef TAO_ETCL_ECHO
|
||||
/* This used to be an fputs(), but since the string might contain NUL's,
|
||||
* we now use fwrite().
|
||||
*/
|
||||
-#define ECHO (void) fwrite( yytext, yyleng, 1, yyout )
|
||||
+#define TAO_ETCL_ECHO (void) fwrite( yytext, yyleng, 1, yyout )
|
||||
#endif
|
||||
|
||||
/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
|
||||
@@ -628,13 +621,11 @@
|
||||
YY_DECL
|
||||
{
|
||||
register yy_state_type yy_current_state;
|
||||
- register char *yy_cp, *yy_bp;
|
||||
+ register char *yy_cp = 0;
|
||||
+ register char *yy_bp = 0;
|
||||
register int yy_act;
|
||||
|
||||
-#line 50 "ETCL.ll"
|
||||
-
|
||||
-
|
||||
-#line 638 "lex.yy.c"
|
||||
+//#line 50 "ETCL/ETCL.ll"
|
||||
|
||||
if ( yy_init )
|
||||
{
|
||||
@@ -719,240 +710,239 @@
|
||||
|
||||
case 1:
|
||||
YY_RULE_SETUP
|
||||
-#line 52 "ETCL.ll"
|
||||
+//#line 52 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_MIN; }
|
||||
YY_BREAK
|
||||
case 2:
|
||||
YY_RULE_SETUP
|
||||
-#line 53 "ETCL.ll"
|
||||
+//#line 53 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_MAX; }
|
||||
YY_BREAK
|
||||
case 3:
|
||||
YY_RULE_SETUP
|
||||
-#line 54 "ETCL.ll"
|
||||
+//#line 54 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_FIRST; }
|
||||
YY_BREAK
|
||||
case 4:
|
||||
YY_RULE_SETUP
|
||||
-#line 55 "ETCL.ll"
|
||||
+//#line 55 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_RANDOM; }
|
||||
YY_BREAK
|
||||
case 5:
|
||||
YY_RULE_SETUP
|
||||
-#line 56 "ETCL.ll"
|
||||
+//#line 56 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_WITH; }
|
||||
YY_BREAK
|
||||
case 6:
|
||||
YY_RULE_SETUP
|
||||
-#line 57 "ETCL.ll"
|
||||
+//#line 57 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_EXIST; }
|
||||
YY_BREAK
|
||||
case 7:
|
||||
YY_RULE_SETUP
|
||||
-#line 58 "ETCL.ll"
|
||||
+//#line 58 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_NOT; }
|
||||
YY_BREAK
|
||||
case 8:
|
||||
YY_RULE_SETUP
|
||||
-#line 59 "ETCL.ll"
|
||||
+//#line 59 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_AND; }
|
||||
YY_BREAK
|
||||
case 9:
|
||||
YY_RULE_SETUP
|
||||
-#line 60 "ETCL.ll"
|
||||
+//#line 60 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_OR; }
|
||||
YY_BREAK
|
||||
case 10:
|
||||
YY_RULE_SETUP
|
||||
-#line 61 "ETCL.ll"
|
||||
+//#line 61 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_IN; }
|
||||
YY_BREAK
|
||||
case 11:
|
||||
YY_RULE_SETUP
|
||||
-#line 62 "ETCL.ll"
|
||||
+//#line 62 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_TWIDDLE; }
|
||||
YY_BREAK
|
||||
case 12:
|
||||
YY_RULE_SETUP
|
||||
-#line 63 "ETCL.ll"
|
||||
+//#line 63 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_PLUS; }
|
||||
YY_BREAK
|
||||
case 13:
|
||||
YY_RULE_SETUP
|
||||
-#line 64 "ETCL.ll"
|
||||
+//#line 64 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_MINUS; }
|
||||
YY_BREAK
|
||||
case 14:
|
||||
YY_RULE_SETUP
|
||||
-#line 65 "ETCL.ll"
|
||||
+//#line 65 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_MULT; }
|
||||
YY_BREAK
|
||||
case 15:
|
||||
YY_RULE_SETUP
|
||||
-#line 66 "ETCL.ll"
|
||||
+//#line 66 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_DIV; }
|
||||
YY_BREAK
|
||||
case 16:
|
||||
YY_RULE_SETUP
|
||||
-#line 67 "ETCL.ll"
|
||||
+//#line 67 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_LT; }
|
||||
YY_BREAK
|
||||
case 17:
|
||||
YY_RULE_SETUP
|
||||
-#line 68 "ETCL.ll"
|
||||
+//#line 68 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_LE; }
|
||||
YY_BREAK
|
||||
case 18:
|
||||
YY_RULE_SETUP
|
||||
-#line 69 "ETCL.ll"
|
||||
+//#line 69 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_GT; }
|
||||
YY_BREAK
|
||||
case 19:
|
||||
YY_RULE_SETUP
|
||||
-#line 70 "ETCL.ll"
|
||||
+//#line 70 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_GE; }
|
||||
YY_BREAK
|
||||
case 20:
|
||||
YY_RULE_SETUP
|
||||
-#line 71 "ETCL.ll"
|
||||
+//#line 71 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_EQ; }
|
||||
YY_BREAK
|
||||
case 21:
|
||||
YY_RULE_SETUP
|
||||
-#line 72 "ETCL.ll"
|
||||
+//#line 72 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_NE; }
|
||||
YY_BREAK
|
||||
case 22:
|
||||
YY_RULE_SETUP
|
||||
-#line 73 "ETCL.ll"
|
||||
+//#line 73 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_LPAREN; }
|
||||
YY_BREAK
|
||||
case 23:
|
||||
YY_RULE_SETUP
|
||||
-#line 74 "ETCL.ll"
|
||||
+//#line 74 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_RPAREN; }
|
||||
YY_BREAK
|
||||
case 24:
|
||||
YY_RULE_SETUP
|
||||
-#line 75 "ETCL.ll"
|
||||
+//#line 75 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_DOLLAR; }
|
||||
YY_BREAK
|
||||
case 25:
|
||||
YY_RULE_SETUP
|
||||
-#line 76 "ETCL.ll"
|
||||
+//#line 76 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_DOT; }
|
||||
YY_BREAK
|
||||
case 26:
|
||||
YY_RULE_SETUP
|
||||
-#line 77 "ETCL.ll"
|
||||
+//#line 77 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_DEFAULT; }
|
||||
YY_BREAK
|
||||
case 27:
|
||||
YY_RULE_SETUP
|
||||
-#line 78 "ETCL.ll"
|
||||
+//#line 78 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_DISCRIMINANT; }
|
||||
YY_BREAK
|
||||
case 28:
|
||||
YY_RULE_SETUP
|
||||
-#line 79 "ETCL.ll"
|
||||
+//#line 79 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_TYPE_ID; }
|
||||
YY_BREAK
|
||||
case 29:
|
||||
YY_RULE_SETUP
|
||||
-#line 80 "ETCL.ll"
|
||||
+//#line 80 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_REPOS_ID; }
|
||||
YY_BREAK
|
||||
case 30:
|
||||
YY_RULE_SETUP
|
||||
-#line 81 "ETCL.ll"
|
||||
+//#line 81 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_LENGTH; }
|
||||
YY_BREAK
|
||||
case 31:
|
||||
YY_RULE_SETUP
|
||||
-#line 82 "ETCL.ll"
|
||||
+//#line 82 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_LBRA; }
|
||||
YY_BREAK
|
||||
case 32:
|
||||
YY_RULE_SETUP
|
||||
-#line 83 "ETCL.ll"
|
||||
+//#line 83 "ETCL/ETCL.ll"
|
||||
{ TAO_YY_LEX_DEBUG; return TAO_ETCL_RBRA; }
|
||||
YY_BREAK
|
||||
case 33:
|
||||
YY_RULE_SETUP
|
||||
-#line 84 "ETCL.ll"
|
||||
-{
|
||||
- lvalp->constraint =
|
||||
+//#line 84 "ETCL/ETCL.ll"
|
||||
+{
|
||||
+ yylval.constraint =
|
||||
new TAO_ETCL_Literal_Constraint ((CORBA::Boolean) 1);
|
||||
TAO_YY_LEX_DEBUG; return TAO_ETCL_BOOLEAN;
|
||||
}
|
||||
YY_BREAK
|
||||
case 34:
|
||||
YY_RULE_SETUP
|
||||
-#line 89 "ETCL.ll"
|
||||
-{
|
||||
- lvalp->constraint =
|
||||
+//#line 89 "ETCL/ETCL.ll"
|
||||
+{
|
||||
+ yylval.constraint =
|
||||
new TAO_ETCL_Literal_Constraint ((CORBA::Boolean) 0);
|
||||
TAO_YY_LEX_DEBUG; return TAO_ETCL_BOOLEAN;
|
||||
}
|
||||
YY_BREAK
|
||||
case 35:
|
||||
YY_RULE_SETUP
|
||||
-#line 94 "ETCL.ll"
|
||||
-{
|
||||
- lvalp->constraint =
|
||||
+//#line 94 "ETCL/ETCL.ll"
|
||||
+{
|
||||
+ yylval.constraint =
|
||||
new TAO_ETCL_Literal_Constraint (ACE_OS::atoi (yytext));
|
||||
- TAO_YY_LEX_DEBUG; return TAO_ETCL_INTEGER;
|
||||
+ TAO_YY_LEX_DEBUG; return TAO_ETCL_INTEGER;
|
||||
}
|
||||
YY_BREAK
|
||||
case 36:
|
||||
YY_RULE_SETUP
|
||||
-#line 99 "ETCL.ll"
|
||||
+//#line 99 "ETCL/ETCL.ll"
|
||||
{
|
||||
double v;
|
||||
- sscanf (yytext, "%lf", &v);
|
||||
- lvalp->constraint =
|
||||
+ sscanf (yytext, "%lf", &v);
|
||||
+ yylval.constraint =
|
||||
new TAO_ETCL_Literal_Constraint (v);
|
||||
- TAO_YY_LEX_DEBUG; return TAO_ETCL_FLOAT;
|
||||
+ TAO_YY_LEX_DEBUG; return TAO_ETCL_FLOAT;
|
||||
}
|
||||
YY_BREAK
|
||||
case 37:
|
||||
YY_RULE_SETUP
|
||||
-#line 106 "ETCL.ll"
|
||||
-{
|
||||
- lvalp->constraint =
|
||||
- new TAO_ETCL_Literal_Constraint (extract_string (yytext));
|
||||
- TAO_YY_LEX_DEBUG; return TAO_ETCL_STRING;
|
||||
+//#line 106 "ETCL/ETCL.ll"
|
||||
+{
|
||||
+ yylval.constraint =
|
||||
+ new TAO_ETCL_Literal_Constraint (extract_string(yytext));
|
||||
+ TAO_YY_LEX_DEBUG; return TAO_ETCL_STRING;
|
||||
}
|
||||
YY_BREAK
|
||||
case 38:
|
||||
YY_RULE_SETUP
|
||||
-#line 111 "ETCL.ll"
|
||||
-{
|
||||
- lvalp->constraint =
|
||||
+//#line 111 "ETCL/ETCL.ll"
|
||||
+{
|
||||
+ yylval.constraint =
|
||||
new TAO_ETCL_Identifier (yytext);
|
||||
- TAO_YY_LEX_DEBUG; return TAO_ETCL_IDENT;
|
||||
+ TAO_YY_LEX_DEBUG; return TAO_ETCL_IDENT;
|
||||
}
|
||||
YY_BREAK
|
||||
case 39:
|
||||
YY_RULE_SETUP
|
||||
-#line 116 "ETCL.ll"
|
||||
-{
|
||||
+//#line 116 "ETCL/ETCL.ll"
|
||||
+{
|
||||
TAO_YY_LEX_DEBUG; break; // Ignore
|
||||
}
|
||||
YY_BREAK
|
||||
case 40:
|
||||
YY_RULE_SETUP
|
||||
-#line 119 "ETCL.ll"
|
||||
-{
|
||||
+//#line 119 "ETCL/ETCL.ll"
|
||||
+{
|
||||
TAO_YY_LEX_DEBUG; break; // @@ TODO
|
||||
}
|
||||
YY_BREAK
|
||||
case 41:
|
||||
YY_RULE_SETUP
|
||||
-#line 122 "ETCL.ll"
|
||||
-ECHO;
|
||||
+//#line 122 "ETCL/ETCL.ll"
|
||||
+TAO_ETCL_ECHO;
|
||||
YY_BREAK
|
||||
-#line 956 "lex.yy.c"
|
||||
case YY_STATE_EOF(INITIAL):
|
||||
yyterminate();
|
||||
|
||||
@@ -1288,7 +1278,7 @@
|
||||
return yy_is_jam ? 0 : yy_current_state;
|
||||
}
|
||||
|
||||
-
|
||||
+#if 0
|
||||
#ifndef YY_NO_UNPUT
|
||||
#ifdef YY_USE_PROTOS
|
||||
static void yyunput( int c, register char *yy_bp )
|
||||
@@ -1332,7 +1322,7 @@
|
||||
yy_c_buf_p = yy_cp;
|
||||
}
|
||||
#endif /* ifndef YY_NO_UNPUT */
|
||||
-
|
||||
+#endif /* 0 */
|
||||
|
||||
#ifdef __cplusplus
|
||||
static int yyinput()
|
||||
@@ -1406,6 +1396,11 @@
|
||||
return c;
|
||||
}
|
||||
|
||||
+void yyflush_current_buffer (void)
|
||||
+{
|
||||
+ YY_FLUSH_BUFFER;
|
||||
+}
|
||||
+
|
||||
|
||||
#ifdef YY_USE_PROTOS
|
||||
void yyrestart( FILE *input_file )
|
||||
@@ -1516,11 +1511,6 @@
|
||||
}
|
||||
|
||||
|
||||
-#ifndef YY_ALWAYS_INTERACTIVE
|
||||
-#ifndef YY_NEVER_INTERACTIVE
|
||||
-extern int isatty YY_PROTO(( int ));
|
||||
-#endif
|
||||
-#endif
|
||||
|
||||
#ifdef YY_USE_PROTOS
|
||||
void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
|
||||
@@ -1537,15 +1527,18 @@
|
||||
b->yy_input_file = file;
|
||||
b->yy_fill_buffer = 1;
|
||||
|
||||
-#if YY_ALWAYS_INTERACTIVE
|
||||
- b->yy_is_interactive = 1;
|
||||
-#else
|
||||
-#if YY_NEVER_INTERACTIVE
|
||||
- b->yy_is_interactive = 0;
|
||||
+#if defined (ACE_HAS_WINCE)
|
||||
+ // Mimic the behavior as WinCE does not have isatty().
|
||||
+ if ((file != 0) && (file == ACE_OS::fileno(file))) {
|
||||
+ b->yy_is_interactive = 1;
|
||||
+ }
|
||||
+ else {
|
||||
+ b->yy_is_interactive = 0;
|
||||
+ }
|
||||
#else
|
||||
b->yy_is_interactive = file ? (ACE_OS::isatty( ACE_OS::fileno(file) ) > 0) : 0;
|
||||
-#endif
|
||||
-#endif
|
||||
+#endif // ACE_HAS_WINCE
|
||||
+
|
||||
}
|
||||
|
||||
|
||||
@@ -1838,7 +1831,7 @@
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
-#line 122 "ETCL.ll"
|
||||
+//#line 122 "ETCL/ETCL.ll"
|
||||
|
||||
|
||||
const char*
|
||||
|
|
@ -1,46 +0,0 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||
# Visual Studio 2010
|
||||
# $Id: VC10WorkspaceCreator.pm 1890 2010-08-24 19:48:23Z mitza $
|
||||
#
|
||||
# This file was generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
# MPC Command:
|
||||
# /tmp/DOC_ROOT/stage-1367/ACE_wrappers/bin/mwc.pl -type vc10 -recurse -hierarchy -relative ACE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers -relative TAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO -relative CIAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/CIAO -relative DANCE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/DAnCE -name_modifier "*_vc10"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ACE_ETCL_Parser", "ACE_ETCL_Parser_vc10.vcxproj", "{42B1A787-FECA-1BAD-007E-8A67757B007A}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A} = {17692659-FECA-1BAD-007E-8A67757B007A}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ACE_ETCL", "ACE_ETCL_vc10.vcxproj", "{17692659-FECA-1BAD-007E-8A67757B007A}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
Debug|x64 = Debug|x64
|
||||
Release|Win32 = Release|Win32
|
||||
Release|x64 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A}.Debug|x64.Build.0 = Debug|x64
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A}.Release|Win32.Build.0 = Release|Win32
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A}.Release|x64.ActiveCfg = Release|x64
|
||||
{42B1A787-FECA-1BAD-007E-8A67757B007A}.Release|x64.Build.0 = Release|x64
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A}.Debug|x64.Build.0 = Debug|x64
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A}.Release|Win32.Build.0 = Release|Win32
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A}.Release|x64.ActiveCfg = Release|x64
|
||||
{17692659-FECA-1BAD-007E-8A67757B007A}.Release|x64.Build.0 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
|
@ -1,607 +0,0 @@
|
|||
--- bison_gen\ETCL_y.cpp 2005-07-19 09:56:06.368807400 -0700
|
||||
+++ ETCL_y.cpp 2005-07-19 09:45:00.160274900 -0700
|
||||
@@ -1,5 +1,6 @@
|
||||
+// $Id: ETCL_y.cpp.diff 81528 2008-04-29 18:21:43Z parsons $
|
||||
|
||||
-/* A Bison parser, made from ETCL.yy
|
||||
+/* A Bison parser, made from ETCL/ETCL.yy
|
||||
by GNU Bison version 1.28 */
|
||||
|
||||
#define YYBISON 1 /* Identify Bison output. */
|
||||
@@ -48,9 +49,9 @@
|
||||
#define TAO_ETCL_TYPE_ID 298
|
||||
#define TAO_ETCL_REPOS_ID 299
|
||||
|
||||
-#line 1 "ETCL.yy"
|
||||
+//#line 1 "ETCL/ETCL.yy"
|
||||
|
||||
-// ETCL.yy,v 1.3 2002/01/14 19:52:28 parsons Exp
|
||||
+// $Id: ETCL_y.cpp.diff 81528 2008-04-29 18:21:43Z parsons $
|
||||
// ========================================================================
|
||||
//
|
||||
// = LIBRARY
|
||||
@@ -70,6 +71,7 @@
|
||||
#include "ETCL_Interpreter.h"
|
||||
|
||||
extern int yylex (void);
|
||||
+extern void yyflush_current_buffer (void);
|
||||
|
||||
static void yyerror (const char *)
|
||||
{
|
||||
@@ -77,9 +79,6 @@
|
||||
// Ignore error messages
|
||||
}
|
||||
|
||||
-#ifndef YYSTYPE
|
||||
-#define YYSTYPE int
|
||||
-#endif
|
||||
#include <stdio.h>
|
||||
|
||||
#ifndef __cplusplus
|
||||
@@ -293,8 +292,9 @@
|
||||
-1, -1, 29, 3, 4, 5, 6, 7, 8, -1,
|
||||
-1, -1, -1, 40, 49, 50, 51, 52, 53, 54
|
||||
};
|
||||
-/* -*-C-*- Note some compilers choke on comments on `#line' lines. */
|
||||
-#line 3 "/usr/local/share/bison.simple"
|
||||
+/* -*-C-*- Note some compilers choke on comments on `//#line' lines. */
|
||||
+//#line 3 "/pkg/gnu/share/bison.simple"
|
||||
+/* This file comes from bison-1.28. */
|
||||
|
||||
/* Skeleton output parser for bison,
|
||||
Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
|
||||
@@ -311,46 +311,66 @@
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||||
+ Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
+ Boston, MA 02111-1307, USA. */
|
||||
|
||||
/* As a special exception, when this file is copied by Bison into a
|
||||
Bison output file, you may use that output file without restriction.
|
||||
This special exception was added by the Free Software Foundation
|
||||
in version 1.24 of Bison. */
|
||||
|
||||
-#ifndef alloca
|
||||
+/* This is the parser code that is written into each bison parser
|
||||
+ when the %semantic_parser declaration is not specified in the grammar.
|
||||
+ It was written by Richard Stallman by simplifying the hairy parser
|
||||
+ used when %semantic_parser is specified. */
|
||||
+
|
||||
+#ifndef YYSTACK_USE_ALLOCA
|
||||
+#ifdef alloca
|
||||
+#define YYSTACK_USE_ALLOCA
|
||||
+#else /* alloca not defined */
|
||||
#ifdef __GNUC__
|
||||
+#define YYSTACK_USE_ALLOCA
|
||||
#define alloca __builtin_alloca
|
||||
#else /* not GNU C. */
|
||||
-#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
|
||||
+#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi) || (defined (__sun) && defined (__i386))
|
||||
+#define YYSTACK_USE_ALLOCA
|
||||
#include <alloca.h>
|
||||
#else /* not sparc */
|
||||
-#if defined (MSDOS) && !defined (__TURBOC__)
|
||||
+/* We think this test detects Watcom and Microsoft C. */
|
||||
+/* This used to test MSDOS, but that is a bad idea
|
||||
+ since that symbol is in the user namespace. */
|
||||
+#if (defined (_MSDOS) || defined (_MSDOS_)) && !defined (__TURBOC__)
|
||||
+#if 0 /* No need for malloc.h, which pollutes the namespace;
|
||||
+ instead, just don't use alloca. */
|
||||
#include <malloc.h>
|
||||
+#endif
|
||||
#else /* not MSDOS, or __TURBOC__ */
|
||||
#if defined(_AIX)
|
||||
-#include <malloc.h>
|
||||
+/* I don't know what this was needed for, but it pollutes the namespace.
|
||||
+ So I turned it off. rms, 2 May 1997. */
|
||||
+/* #include <malloc.h> */
|
||||
#pragma alloca
|
||||
-#else /* not MSDOS, __TURBOC__, or _AIX */
|
||||
-#ifdef __hpux
|
||||
-#ifdef __cplusplus
|
||||
-extern "C" {
|
||||
-void *alloca (unsigned int);
|
||||
-};
|
||||
-#else /* not __cplusplus */
|
||||
-void *alloca ();
|
||||
-#endif /* not __cplusplus */
|
||||
+#define YYSTACK_USE_ALLOCA
|
||||
+#else /* not MSDOS, or __TURBOC__, or _AIX */
|
||||
+#if 0
|
||||
+#ifdef __hpux /* haible@ilog.fr says this works for HPUX 9.05 and up,
|
||||
+ and on HPUX 10. Eventually we can turn this on. */
|
||||
+#define YYSTACK_USE_ALLOCA
|
||||
+#define alloca __builtin_alloca
|
||||
#endif /* __hpux */
|
||||
+#endif
|
||||
#endif /* not _AIX */
|
||||
#endif /* not MSDOS, or __TURBOC__ */
|
||||
-#endif /* not sparc. */
|
||||
-#endif /* not GNU C. */
|
||||
-#endif /* alloca not defined. */
|
||||
+#endif /* not sparc */
|
||||
+#endif /* not GNU C */
|
||||
+#endif /* alloca not defined */
|
||||
+#endif /* YYSTACK_USE_ALLOCA not defined */
|
||||
|
||||
-/* This is the parser code that is written into each bison parser
|
||||
- when the %semantic_parser declaration is not specified in the grammar.
|
||||
- It was written by Richard Stallman by simplifying the hairy parser
|
||||
- used when %semantic_parser is specified. */
|
||||
+#ifdef YYSTACK_USE_ALLOCA
|
||||
+#define YYSTACK_ALLOC alloca
|
||||
+#else
|
||||
+#define YYSTACK_ALLOC malloc
|
||||
+#endif
|
||||
|
||||
/* Note: there must be only one dollar sign in this file.
|
||||
It is replaced by the list of actions, each action
|
||||
@@ -360,8 +380,8 @@
|
||||
#define yyclearin (yychar = YYEMPTY)
|
||||
#define YYEMPTY -2
|
||||
#define YYEOF 0
|
||||
-#define YYACCEPT return(0)
|
||||
-#define YYABORT return(1)
|
||||
+#define YYACCEPT goto yyacceptlab
|
||||
+#define YYABORT goto yyabortlab
|
||||
#define YYERROR goto yyerrlab1
|
||||
/* Like YYERROR except do call yyerror.
|
||||
This remains here temporarily to ease the
|
||||
@@ -411,6 +431,10 @@
|
||||
int yychar; /* the lookahead symbol */
|
||||
YYSTYPE yylval; /* the semantic value of the */
|
||||
/* lookahead symbol */
|
||||
+YYSTYPE yyval; /* the variable used to return */
|
||||
+ /* semantic values from the action */
|
||||
+ /* routines */
|
||||
+
|
||||
|
||||
#ifdef YYLSP_NEEDED
|
||||
YYLTYPE yylloc; /* location data for the lookahead */
|
||||
@@ -443,11 +467,11 @@
|
||||
#define YYMAXDEPTH 10000
|
||||
#endif
|
||||
|
||||
-/* Prevent warning if -Wstrict-prototypes. */
|
||||
-#ifdef __GNUC__
|
||||
-int yyparse (void);
|
||||
-#endif
|
||||
-
|
||||
+/* Define __yy_memcpy. Note that the size argument
|
||||
+ should be passed with type unsigned int, because that is what the non-GCC
|
||||
+ definitions require. With GCC, __builtin_memcpy takes an arg
|
||||
+ of type size_t, but it can handle unsigned int. */
|
||||
+
|
||||
#if __GNUC__ > 1 /* GNU C and GNU C++ define this. */
|
||||
#define __yy_memcpy(TO,FROM,COUNT) __builtin_memcpy(TO,FROM,COUNT)
|
||||
#else /* not GNU C or C++ */
|
||||
@@ -459,7 +483,7 @@
|
||||
__yy_memcpy (to, from, count)
|
||||
char *to;
|
||||
char *from;
|
||||
- int count;
|
||||
+ unsigned int count;
|
||||
{
|
||||
register char *f = from;
|
||||
register char *t = to;
|
||||
@@ -474,10 +498,10 @@
|
||||
/* This is the most reliable way to avoid incompatibilities
|
||||
in available built-in functions on various systems. */
|
||||
static void
|
||||
-__yy_memcpy (char *to, char *from, int count)
|
||||
+__yy_memcpy (char *to, char *from, unsigned int count)
|
||||
{
|
||||
- register char *f = from;
|
||||
register char *t = to;
|
||||
+ register char *f = from;
|
||||
register int i = count;
|
||||
|
||||
while (i-- > 0)
|
||||
@@ -486,8 +510,8 @@
|
||||
|
||||
#endif
|
||||
#endif
|
||||
-
|
||||
-#line 196 "/usr/local/share/bison.simple"
|
||||
+
|
||||
+//#line 217 "/pkg/gnu/share/bison.simple"
|
||||
|
||||
/* The user can define YYPARSE_PARAM as the name of an argument to be passed
|
||||
into yyparse. The argument should have type void *.
|
||||
@@ -508,6 +532,15 @@
|
||||
#define YYPARSE_PARAM_DECL
|
||||
#endif /* not YYPARSE_PARAM */
|
||||
|
||||
+/* Prevent warning if -Wstrict-prototypes. */
|
||||
+#ifdef __GNUC__
|
||||
+#ifdef YYPARSE_PARAM
|
||||
+int yyparse (void *);
|
||||
+#else
|
||||
+int yyparse (void);
|
||||
+#endif
|
||||
+#endif
|
||||
+
|
||||
int
|
||||
yyparse(YYPARSE_PARAM_ARG)
|
||||
YYPARSE_PARAM_DECL
|
||||
@@ -536,6 +569,7 @@
|
||||
#endif
|
||||
|
||||
int yystacksize = YYINITDEPTH;
|
||||
+ int yyfree_stacks = 0;
|
||||
|
||||
#ifdef YYPURE
|
||||
int yychar;
|
||||
@@ -546,10 +580,6 @@
|
||||
#endif
|
||||
#endif
|
||||
|
||||
- YYSTYPE yyval; /* the variable used to return */
|
||||
- /* semantic values from the action */
|
||||
- /* routines */
|
||||
-
|
||||
int yylen;
|
||||
|
||||
#if YYDEBUG != 0
|
||||
@@ -620,18 +650,32 @@
|
||||
if (yystacksize >= YYMAXDEPTH)
|
||||
{
|
||||
yyerror("parser stack overflow");
|
||||
+ if (yyfree_stacks)
|
||||
+ {
|
||||
+ free (yyss);
|
||||
+ free (yyvs);
|
||||
+#ifdef YYLSP_NEEDED
|
||||
+ free (yyls);
|
||||
+#endif
|
||||
+ }
|
||||
return 2;
|
||||
}
|
||||
yystacksize *= 2;
|
||||
if (yystacksize > YYMAXDEPTH)
|
||||
yystacksize = YYMAXDEPTH;
|
||||
- yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
|
||||
- __yy_memcpy ((char *)yyss, (char *)yyss1, size * sizeof (*yyssp));
|
||||
- yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
|
||||
- __yy_memcpy ((char *)yyvs, (char *)yyvs1, size * sizeof (*yyvsp));
|
||||
+#ifndef YYSTACK_USE_ALLOCA
|
||||
+ yyfree_stacks = 1;
|
||||
+#endif
|
||||
+ yyss = (short *) YYSTACK_ALLOC (yystacksize * sizeof (*yyssp));
|
||||
+ __yy_memcpy ((char *)yyss, (char *)yyss1,
|
||||
+ size * (unsigned int) sizeof (*yyssp));
|
||||
+ yyvs = (YYSTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yyvsp));
|
||||
+ __yy_memcpy ((char *)yyvs, (char *)yyvs1,
|
||||
+ size * (unsigned int) sizeof (*yyvsp));
|
||||
#ifdef YYLSP_NEEDED
|
||||
- yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
|
||||
- __yy_memcpy ((char *)yyls, (char *)yyls1, size * sizeof (*yylsp));
|
||||
+ yyls = (YYLTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yylsp));
|
||||
+ __yy_memcpy ((char *)yyls, (char *)yyls1,
|
||||
+ size * (unsigned int) sizeof (*yylsp));
|
||||
#endif
|
||||
#endif /* no yyoverflow */
|
||||
|
||||
@@ -792,225 +836,225 @@
|
||||
switch (yyn) {
|
||||
|
||||
case 3:
|
||||
-#line 97 "ETCL.yy"
|
||||
+//#line 97 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Preference (TAO_ETCL_MIN, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 4:
|
||||
-#line 99 "ETCL.yy"
|
||||
+//#line 99 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Preference (TAO_ETCL_MAX, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 5:
|
||||
-#line 101 "ETCL.yy"
|
||||
+//#line 101 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Preference (TAO_ETCL_WITH, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 6:
|
||||
-#line 103 "ETCL.yy"
|
||||
+//#line 103 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Preference (TAO_ETCL_FIRST); ;
|
||||
break;}
|
||||
case 7:
|
||||
-#line 105 "ETCL.yy"
|
||||
+//#line 105 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Preference (TAO_ETCL_RANDOM); ;
|
||||
break;}
|
||||
case 8:
|
||||
-#line 109 "ETCL.yy"
|
||||
+//#line 109 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Binary_Expr (TAO_ETCL_OR, yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 10:
|
||||
-#line 114 "ETCL.yy"
|
||||
+//#line 114 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Binary_Expr (TAO_ETCL_AND, yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 12:
|
||||
-#line 119 "ETCL.yy"
|
||||
+//#line 119 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Binary_Expr (TAO_ETCL_EQ, yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 13:
|
||||
-#line 121 "ETCL.yy"
|
||||
+//#line 121 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Binary_Expr (TAO_ETCL_NE, yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 14:
|
||||
-#line 123 "ETCL.yy"
|
||||
+//#line 123 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Binary_Expr (TAO_ETCL_GT, yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 15:
|
||||
-#line 125 "ETCL.yy"
|
||||
+//#line 125 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Binary_Expr (TAO_ETCL_GE, yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 16:
|
||||
-#line 127 "ETCL.yy"
|
||||
+//#line 127 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Binary_Expr (TAO_ETCL_LT, yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 17:
|
||||
-#line 129 "ETCL.yy"
|
||||
+//#line 129 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Binary_Expr (TAO_ETCL_LE, yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 19:
|
||||
-#line 134 "ETCL.yy"
|
||||
+//#line 134 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Binary_Expr (TAO_ETCL_IN, yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 20:
|
||||
-#line 136 "ETCL.yy"
|
||||
+//#line 136 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Binary_Expr (TAO_ETCL_IN, yyvsp[-3].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 22:
|
||||
-#line 141 "ETCL.yy"
|
||||
+//#line 141 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Binary_Expr (TAO_ETCL_TWIDDLE, yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 24:
|
||||
-#line 146 "ETCL.yy"
|
||||
+//#line 146 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Binary_Expr (TAO_ETCL_PLUS, yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 25:
|
||||
-#line 148 "ETCL.yy"
|
||||
+//#line 148 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Binary_Expr (TAO_ETCL_MINUS, yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 27:
|
||||
-#line 153 "ETCL.yy"
|
||||
+//#line 153 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Binary_Expr (TAO_ETCL_MULT, yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 28:
|
||||
-#line 155 "ETCL.yy"
|
||||
+//#line 155 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Binary_Expr (TAO_ETCL_DIV, yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 30:
|
||||
-#line 160 "ETCL.yy"
|
||||
+//#line 160 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Unary_Expr (TAO_ETCL_NOT, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 32:
|
||||
-#line 165 "ETCL.yy"
|
||||
+//#line 165 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = yyvsp[-1].constraint; ;
|
||||
break;}
|
||||
case 33:
|
||||
-#line 167 "ETCL.yy"
|
||||
+//#line 167 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = yyvsp[0].constraint; ;
|
||||
break;}
|
||||
case 34:
|
||||
-#line 169 "ETCL.yy"
|
||||
+//#line 169 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Unary_Expr (TAO_ETCL_PLUS, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 35:
|
||||
-#line 171 "ETCL.yy"
|
||||
+//#line 171 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Unary_Expr (TAO_ETCL_MINUS, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 36:
|
||||
-#line 173 "ETCL.yy"
|
||||
+//#line 173 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = yyvsp[0].constraint; ;
|
||||
break;}
|
||||
case 37:
|
||||
-#line 175 "ETCL.yy"
|
||||
+//#line 175 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Unary_Expr (TAO_ETCL_PLUS, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 38:
|
||||
-#line 177 "ETCL.yy"
|
||||
+//#line 177 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Unary_Expr (TAO_ETCL_MINUS, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 39:
|
||||
-#line 179 "ETCL.yy"
|
||||
+//#line 179 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = yyvsp[0].constraint; ;
|
||||
break;}
|
||||
case 40:
|
||||
-#line 181 "ETCL.yy"
|
||||
+//#line 181 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = yyvsp[0].constraint; ;
|
||||
break;}
|
||||
case 41:
|
||||
-#line 183 "ETCL.yy"
|
||||
+//#line 183 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Exist (yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 42:
|
||||
-#line 185 "ETCL.yy"
|
||||
+//#line 185 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Exist (yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 43:
|
||||
-#line 187 "ETCL.yy"
|
||||
+//#line 187 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Default (yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 44:
|
||||
-#line 189 "ETCL.yy"
|
||||
+//#line 189 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Eval (yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 45:
|
||||
-#line 191 "ETCL.yy"
|
||||
+//#line 191 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = yyvsp[0].constraint; ;
|
||||
break;}
|
||||
case 46:
|
||||
-#line 195 "ETCL.yy"
|
||||
+//#line 195 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = 0; ;
|
||||
break;}
|
||||
case 47:
|
||||
-#line 197 "ETCL.yy"
|
||||
+//#line 197 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Dot (yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 48:
|
||||
-#line 200 "ETCL.yy"
|
||||
+//#line 200 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Component (yyvsp[-1].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 51:
|
||||
-#line 207 "ETCL.yy"
|
||||
+//#line 207 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = 0; ;
|
||||
break;}
|
||||
case 52:
|
||||
-#line 209 "ETCL.yy"
|
||||
+//#line 209 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Dot (yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 55:
|
||||
-#line 216 "ETCL.yy"
|
||||
+//#line 216 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Component (yyvsp[-1].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 56:
|
||||
-#line 218 "ETCL.yy"
|
||||
+//#line 218 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Special (TAO_ETCL_LENGTH); ;
|
||||
break;}
|
||||
case 57:
|
||||
-#line 220 "ETCL.yy"
|
||||
+//#line 220 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Special (TAO_ETCL_DISCRIMINANT); ;
|
||||
break;}
|
||||
case 58:
|
||||
-#line 222 "ETCL.yy"
|
||||
+//#line 222 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Special (TAO_ETCL_TYPE_ID); ;
|
||||
break;}
|
||||
case 59:
|
||||
-#line 224 "ETCL.yy"
|
||||
+//#line 224 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Special (TAO_ETCL_REPOS_ID); ;
|
||||
break;}
|
||||
case 62:
|
||||
-#line 230 "ETCL.yy"
|
||||
+//#line 230 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Component_Array (yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 63:
|
||||
-#line 234 "ETCL.yy"
|
||||
+//#line 234 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Component_Assoc (yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 64:
|
||||
-#line 238 "ETCL.yy"
|
||||
+//#line 238 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Component_Pos (yyvsp[-1].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 65:
|
||||
-#line 242 "ETCL.yy"
|
||||
+//#line 242 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Union_Pos (yyvsp[-2].constraint, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 66:
|
||||
-#line 246 "ETCL.yy"
|
||||
+//#line 246 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = 0; ;
|
||||
break;}
|
||||
case 67:
|
||||
-#line 248 "ETCL.yy"
|
||||
+//#line 248 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Union_Value (+1, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 68:
|
||||
-#line 250 "ETCL.yy"
|
||||
+//#line 250 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Union_Value (+1, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 69:
|
||||
-#line 252 "ETCL.yy"
|
||||
+//#line 252 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Union_Value (-1, yyvsp[0].constraint); ;
|
||||
break;}
|
||||
case 70:
|
||||
-#line 254 "ETCL.yy"
|
||||
+//#line 254 "ETCL/ETCL.yy"
|
||||
{ yyval.constraint = new TAO_ETCL_Union_Value (yyvsp[0].constraint); ;
|
||||
break;}
|
||||
}
|
||||
/* the action file gets copied in in place of this dollarsign */
|
||||
-#line 498 "/usr/local/share/bison.simple"
|
||||
-
|
||||
+//#line 543 "/pkg/gnu/share/bison.simple"
|
||||
+
|
||||
yyvsp -= yylen;
|
||||
yyssp -= yylen;
|
||||
#ifdef YYLSP_NEEDED
|
||||
@@ -1204,7 +1248,37 @@
|
||||
|
||||
yystate = yyn;
|
||||
goto yynewstate;
|
||||
+
|
||||
+ yyacceptlab:
|
||||
+ /* YYACCEPT comes here. */
|
||||
+ if (yyfree_stacks)
|
||||
+ {
|
||||
+ free (yyss);
|
||||
+ free (yyvs);
|
||||
+#ifdef YYLSP_NEEDED
|
||||
+ free (yyls);
|
||||
+#endif
|
||||
+ }
|
||||
+ return 0;
|
||||
+
|
||||
+ yyabortlab:
|
||||
+ /* YYABORT comes here. */
|
||||
+
|
||||
+ /* Flush out yy_current_buffer before next parse. Since there is
|
||||
+ no error recovery, the buffer could still contain tokens from this
|
||||
+ parse. */
|
||||
+ yyflush_current_buffer();
|
||||
+
|
||||
+ if (yyfree_stacks)
|
||||
+ {
|
||||
+ free (yyss);
|
||||
+ free (yyvs);
|
||||
+#ifdef YYLSP_NEEDED
|
||||
+ free (yyls);
|
||||
+#endif
|
||||
+ }
|
||||
+ return 1;
|
||||
}
|
||||
-#line 257 "ETCL.yy"
|
||||
+//#line 257 "ETCL/ETCL.yy"
|
||||
|
||||
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
--- ETCL_y.h Mon Nov 12 16:07:25 2001
|
||||
+++ ETCL_y.h.safe Thu Oct 11 20:53:13 2001
|
||||
@@ -1,7 +1,4 @@
|
||||
// $Id: ETCL_y.h.diff 81528 2008-04-29 18:21:43Z parsons $
|
||||
-#ifndef YYSTYPE
|
||||
-#define YYSTYPE int
|
||||
-#endif
|
||||
#define TAO_ETCL_GT 257
|
||||
#define TAO_ETCL_GE 258
|
||||
#define TAO_ETCL_LT 259
|
||||
@@ -33,7 +30,7 @@
|
||||
#define TAO_ETCL_SIGNED 285
|
||||
#define TAO_ETCL_DOUBLE 286
|
||||
#define TAO_ETCL_CONSTRAINT 287
|
||||
-#define TAO_ETCL_SEQUENCE 288
|
||||
+#define TAO_ETCL_COMPONENT 288
|
||||
#define TAO_ETCL_WITH 289
|
||||
#define TAO_ETCL_MAX 290
|
||||
#define TAO_ETCL_MIN 291
|
||||
@@ -46,5 +43,3 @@
|
||||
#define TAO_ETCL_TYPE_ID 298
|
||||
#define TAO_ETCL_REPOS_ID 299
|
||||
|
||||
-
|
||||
-extern YYSTYPE yylval;
|
||||
|
|
@ -1,41 +0,0 @@
|
|||
# -*- makefile -*-
|
||||
#----------------------------------------------------------------------------
|
||||
# GNU ACE Workspace
|
||||
#
|
||||
# $Id: GNUACEWorkspaceCreator.pm 91813 2010-09-17 07:52:52Z johnnyw $
|
||||
#
|
||||
# This file was generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
# MPC Command:
|
||||
# /tmp/DOC_ROOT/stage-1367/ACE_wrappers/bin/mwc.pl -type gnuace -exclude "TAO/TAO_*.mwc,TAO/CIAO/CIAO_*.mwc" -recurse -hierarchy -relative ACE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers -relative TAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO -relative CIAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/CIAO -relative DANCE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/DAnCE
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
MAKEFILE = GNUmakefile
|
||||
|
||||
ifeq ($(findstring k,$(MAKEFLAGS)),k)
|
||||
KEEP_GOING = -
|
||||
endif
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/macros.GNU
|
||||
|
||||
all: ACE_ETCL ACE_ETCL_Parser
|
||||
|
||||
REMAINING_TARGETS := $(filter-out all,$(TARGETS_NESTED:.nested=)) $(CUSTOM_TARGETS)
|
||||
|
||||
$(REMAINING_TARGETS):
|
||||
$(KEEP_GOING)@$(MAKE) -f GNUmakefile.ACE_ETCL $(@)
|
||||
$(KEEP_GOING)@$(MAKE) -f GNUmakefile.ACE_ETCL_Parser $(@)
|
||||
|
||||
.PHONY: ACE_ETCL
|
||||
ACE_ETCL:
|
||||
$(KEEP_GOING)@$(MAKE) -f GNUmakefile.ACE_ETCL all
|
||||
|
||||
.PHONY: ACE_ETCL_Parser
|
||||
ACE_ETCL_Parser: ACE_ETCL
|
||||
$(KEEP_GOING)@$(MAKE) -f GNUmakefile.ACE_ETCL_Parser all
|
||||
|
||||
project_name_list:
|
||||
@echo ACE_ETCL
|
||||
@echo ACE_ETCL_Parser
|
||||
|
|
@ -1,230 +0,0 @@
|
|||
# -*- Makefile -*-
|
||||
#----------------------------------------------------------------------------
|
||||
# GNU Makefile
|
||||
#
|
||||
# @file GNUmakefile.ACE_ETCL
|
||||
#
|
||||
# $Id: gnu.mpd 91974 2010-09-23 16:17:42Z mitza $
|
||||
#
|
||||
# This file was automatically generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
MAKEFILE = GNUmakefile.ACE_ETCL
|
||||
DEPENDENCY_FILE = .depend.ACE_ETCL
|
||||
|
||||
LIB_PREFIX ?= lib
|
||||
|
||||
## LIB_CHECKED may be set to empty later on in this file
|
||||
LIB_UNCHECKED = $(LIB_PREFIX)ACE_ETCL.$(LIBEXT)
|
||||
LIB_CHECKED = $(LIB_UNCHECKED)
|
||||
LIB_NAME = $(LIB_PREFIX)ACE_ETCL
|
||||
|
||||
## SHLIB may be set to empty later on in this file
|
||||
SHLIB_UNCHECKED = $(LIB_PREFIX)ACE_ETCL.$(SOEXT)
|
||||
SHLIB = $(SHLIB_UNCHECKED)
|
||||
|
||||
FILES = \
|
||||
ETCL_Constraint.cpp \
|
||||
ETCL_Constraint_Visitor.cpp
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Include macros and targets
|
||||
#----------------------------------------------------------------------------
|
||||
ACE_SHLIBS = -lACE
|
||||
|
||||
PRJ_TYPE = library
|
||||
|
||||
COLLAPSE_SLASHES = $(if $(findstring //,$(1)),$(call COLLAPSE_SLASHES,$(subst //,/,$(1))),$(1))
|
||||
INSLIB ?= $(call COLLAPSE_SLASHES,../../lib)
|
||||
ifeq ($(INSLIB),.)
|
||||
ifeq ($(CURDIR),)
|
||||
ifeq ($(PWD),)
|
||||
PWD=$(shell pwd)
|
||||
endif
|
||||
else
|
||||
PWD=$(CURDIR)
|
||||
endif
|
||||
INSLIB = $(PWD)
|
||||
endif
|
||||
OUTPUT_DIRECTORY = $(INSLIB)
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
|
||||
|
||||
|
||||
GNUACE_PROJECT_VERSION ?= $(ACE_VERSION)
|
||||
|
||||
# To build multiple targets in the same directory on AIX, it works
|
||||
# best to have a template directory per project.
|
||||
# The compiler/linker isn't too smart about instantiating templates...
|
||||
ifdef TEMPINCDIR
|
||||
TEMPINCDIR := $(TEMPINCDIR)/ACE_ETCL
|
||||
all: $(TEMPINCDIR)
|
||||
endif
|
||||
|
||||
ifneq ($(OUTPUT_DIRECTORY),)
|
||||
.PHONY: create_output_directory.local
|
||||
all: create_output_directory.local
|
||||
create_output_directory.local:
|
||||
-@$(MKDIR) "$(OUTPUT_DIRECTORY)" $(ACE_NUL_STDERR)
|
||||
endif
|
||||
|
||||
# turn off libcheck if doing a dry run
|
||||
ifeq ($(findstring n, $(MAKEFLAGS)),n)
|
||||
LIBCHECK = 1
|
||||
else
|
||||
# turn off libcheck if keep going was passed too
|
||||
ifeq ($(findstring k, $(MAKEFLAGS)),k)
|
||||
LIBCHECK = 1
|
||||
else
|
||||
LIBCHECK ?= $(filter-out $(foreach lib,ACE,$(findstring $(lib),$(foreach libpath,. $(if $(ARCH),./$(ARCH)) ../../lib $(if $(ARCH),../../lib/$(ARCH)) /usr/lib /usr/lib64 $(INSLIB),$(wildcard $(libpath)/$(LIB_PREFIX)$(lib).* $(libpath)/$(lib).lib)))),ACE)
|
||||
ifeq ($(LIBCHECK),)
|
||||
LIBCHECK = 1
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifneq ($(LIBCHECK), 1)
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: lib_warning
|
||||
endif
|
||||
|
||||
LSRC = $(FILES)
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/macros.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.lib.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
|
||||
ifeq ($(VXWORKSLINK),1)
|
||||
include $(TGT_DIR)/h/make/rules.$(PRJ_TYPE)
|
||||
endif
|
||||
|
||||
ifeq ($(VXWORKSLINK),1)
|
||||
LDLIBPATH = -L. -L../../lib
|
||||
else
|
||||
LDFLAGS += -L. $(if $(ARCH),-L./$(ARCH)) -L../../lib $(if $(ARCH),-L../../lib/$(ARCH))
|
||||
endif
|
||||
CPPFLAGS += -I../..
|
||||
ifeq ($(shared_libs),1)
|
||||
ifneq ($(SHLIB),)
|
||||
CPPFLAGS += -DACE_ETCL_BUILD_DLL
|
||||
endif
|
||||
endif
|
||||
ifeq ($(static_libs),1)
|
||||
CPPFLAGS += -DACE_AS_STATIC_LIBS
|
||||
endif
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Local targets
|
||||
#----------------------------------------------------------------------------
|
||||
lib_warning:
|
||||
@echo ACE_ETCL will not be built due to the following missing library: $(LIBCHECK) >&2
|
||||
|
||||
## Some OS's have /bin/test others only have /usr/bin/test
|
||||
ifeq ($(wildcard /bin/test), /bin/test)
|
||||
TEST_EXE = /bin/test
|
||||
else
|
||||
ifeq ($(wildcard /usr/bin/test), /usr/bin/test)
|
||||
TEST_EXE = /usr/bin/test
|
||||
endif
|
||||
endif
|
||||
|
||||
SPACE = $(should_be_unset) $(should_be_unset)
|
||||
ifneq ($(GENERATED_DIRTY),)
|
||||
.PRECIOUS: $(GENERATED_DIRTY)
|
||||
## If the generated files are anything but source files, we need to
|
||||
## ensure that those files are generated before we attempt to build anything
|
||||
## else.
|
||||
ifeq ($(OBJS_DEPEND_ON_GENERATED),1)
|
||||
$(VDIR)$(ACE_PCH_FILE) $(addprefix $(VDIR), $(OBJS)): $(GENERATED_DIRTY)
|
||||
$(VSHDIR)$(ACE_PCH_FILE) $(VSHOBJS): $(GENERATED_DIRTY)
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
realclean: clean
|
||||
ifneq ($(GENERATED_DIRTY),)
|
||||
-$(RM) -r $(GENERATED_DIRTY)
|
||||
endif
|
||||
|
||||
__prebuild__:
|
||||
@-:
|
||||
|
||||
|
||||
.PHONY: install
|
||||
install: all
|
||||
INSTALL_LIB ?= lib
|
||||
ifneq ($(INSTALL_PREFIX),)
|
||||
ifneq ($(install_rpath),0)
|
||||
LDFLAGS += -Wl,-R$(INSTALL_PREFIX)/$(INSTALL_LIB)
|
||||
endif
|
||||
endif
|
||||
|
||||
PRJINST_OPTIONS ?=
|
||||
INST_DIR ?= /ace/ETCL
|
||||
COMMA = ,
|
||||
SPACE = $(should_be_unset) $(should_be_unset)
|
||||
INSTALLER ?= $(MPC_ROOT)/prj_install.pl
|
||||
CUSTOM_INST_TAGS = $(sort )
|
||||
|
||||
LIB_INST_TAGS = header_files template_files$(if $(findstring 1,$(inline)), inline_files)$(if $(CUSTOM_INST_TAGS), $(CUSTOM_INST_TAGS))
|
||||
LIB_INST_LOCATIONS = $(foreach tag,$(LIB_INST_TAGS),-b $(tag)=include$(INST_DIR))
|
||||
|
||||
INST_TAGS = lib_output$(if $(LIB_INST_TAGS), $(LIB_INST_TAGS))
|
||||
INST_LOCATIONS = $(LIB_INST_LOCATIONS) -o lib_output=$(INSTALL_LIB)
|
||||
|
||||
DATA_INST_TAGS =
|
||||
INST_LOCATIONS += $(if $(DATA_INST_TAGS),-x installdata_files -b installdata_files=share$(INST_DIR))
|
||||
INST_TAGS := $(INST_TAGS)$(if $(DATA_INST_TAGS), $(DATA_INST_TAGS))
|
||||
|
||||
ifeq ($(INSTALLER),/prj_install.pl)
|
||||
INSTALLER = $(ACE_ROOT)/MPC/prj_install.pl
|
||||
endif
|
||||
|
||||
ifeq ($(LIBCHECK),1)
|
||||
install:
|
||||
ifeq ($(INST_TAGS),)
|
||||
@echo Nothing to install.
|
||||
else
|
||||
ifeq ($(INSTALL_PREFIX),)
|
||||
@echo The variable INSTALL_PREFIX must be set to install.
|
||||
@echo If binaries are already built and you want to use RPATH,
|
||||
@echo they must be rebuilt after changing INSTALL_PREFIX.
|
||||
@false
|
||||
else
|
||||
perl -ne'if (/^#END MPC-Generated Install Info/) {exit 0}' \
|
||||
-e'elsif (/^#BEGIN MPC-Generated Install Info/) {$$ok=1}' \
|
||||
-e'elsif ($$ok && s/^#//) {print}' $(MAKEFILE) | \
|
||||
$(INSTALLER) -i -s $(subst $(SPACE),$(COMMA),$(INST_TAGS)) \
|
||||
$(INST_LOCATIONS) $(if $(ARCH),-d $(ARCH)) $(PRJINST_OPTIONS) \
|
||||
$(INSTALL_PREFIX)
|
||||
$(ACE_ROOT)/bin/ace_install_pkgconfig.pl ACE_ETCL.pc.in --prefix $(INSTALL_PREFIX) --libdir $(INSTALL_LIB) --libs "$(LIBS)" --version $(GNUACE_PROJECT_VERSION)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
#BEGIN MPC-Generated Install Info
|
||||
#build_files:
|
||||
#ETCL.mpc
|
||||
#
|
||||
#inline_files:
|
||||
#ETCL_Constraint.inl
|
||||
#
|
||||
#header_files:
|
||||
#ETCL_Constraint.h
|
||||
#ETCL_Constraint_Visitor.h
|
||||
#ace_etcl_export.h
|
||||
#
|
||||
#pkgconfig_files:
|
||||
#ACE_ETCL.pc.in
|
||||
#
|
||||
#source_files:
|
||||
#ETCL_Constraint.cpp
|
||||
#ETCL_Constraint_Visitor.cpp
|
||||
#
|
||||
#lib_output:
|
||||
#../../lib ACE_ETCL
|
||||
|
||||
#END MPC-Generated Install Info
|
||||
|
||||
|
|
@ -1,229 +0,0 @@
|
|||
# -*- Makefile -*-
|
||||
#----------------------------------------------------------------------------
|
||||
# GNU Makefile
|
||||
#
|
||||
# @file GNUmakefile.ACE_ETCL_Parser
|
||||
#
|
||||
# $Id: gnu.mpd 91974 2010-09-23 16:17:42Z mitza $
|
||||
#
|
||||
# This file was automatically generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
MAKEFILE = GNUmakefile.ACE_ETCL_Parser
|
||||
DEPENDENCY_FILE = .depend.ACE_ETCL_Parser
|
||||
|
||||
LIB_PREFIX ?= lib
|
||||
|
||||
## LIB_CHECKED may be set to empty later on in this file
|
||||
LIB_UNCHECKED = $(LIB_PREFIX)ACE_ETCL_Parser.$(LIBEXT)
|
||||
LIB_CHECKED = $(LIB_UNCHECKED)
|
||||
LIB_NAME = $(LIB_PREFIX)ACE_ETCL_Parser
|
||||
|
||||
## SHLIB may be set to empty later on in this file
|
||||
SHLIB_UNCHECKED = $(LIB_PREFIX)ACE_ETCL_Parser.$(SOEXT)
|
||||
SHLIB = $(SHLIB_UNCHECKED)
|
||||
|
||||
FILES = \
|
||||
ETCL_Interpreter.cpp \
|
||||
ETCL_l.cpp \
|
||||
ETCL_y.cpp
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Include macros and targets
|
||||
#----------------------------------------------------------------------------
|
||||
ACE_SHLIBS = -lACE_ETCL -lACE
|
||||
|
||||
PRJ_TYPE = library
|
||||
|
||||
COLLAPSE_SLASHES = $(if $(findstring //,$(1)),$(call COLLAPSE_SLASHES,$(subst //,/,$(1))),$(1))
|
||||
INSLIB ?= $(call COLLAPSE_SLASHES,../../lib)
|
||||
ifeq ($(INSLIB),.)
|
||||
ifeq ($(CURDIR),)
|
||||
ifeq ($(PWD),)
|
||||
PWD=$(shell pwd)
|
||||
endif
|
||||
else
|
||||
PWD=$(CURDIR)
|
||||
endif
|
||||
INSLIB = $(PWD)
|
||||
endif
|
||||
OUTPUT_DIRECTORY = $(INSLIB)
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
|
||||
|
||||
|
||||
GNUACE_PROJECT_VERSION ?= $(ACE_VERSION)
|
||||
|
||||
# To build multiple targets in the same directory on AIX, it works
|
||||
# best to have a template directory per project.
|
||||
# The compiler/linker isn't too smart about instantiating templates...
|
||||
ifdef TEMPINCDIR
|
||||
TEMPINCDIR := $(TEMPINCDIR)/ACE_ETCL_Parser
|
||||
all: $(TEMPINCDIR)
|
||||
endif
|
||||
|
||||
ifneq ($(OUTPUT_DIRECTORY),)
|
||||
.PHONY: create_output_directory.local
|
||||
all: create_output_directory.local
|
||||
create_output_directory.local:
|
||||
-@$(MKDIR) "$(OUTPUT_DIRECTORY)" $(ACE_NUL_STDERR)
|
||||
endif
|
||||
|
||||
# turn off libcheck if doing a dry run
|
||||
ifeq ($(findstring n, $(MAKEFLAGS)),n)
|
||||
LIBCHECK = 1
|
||||
else
|
||||
# turn off libcheck if keep going was passed too
|
||||
ifeq ($(findstring k, $(MAKEFLAGS)),k)
|
||||
LIBCHECK = 1
|
||||
else
|
||||
LIBCHECK ?= $(filter-out $(foreach lib,ACE_ETCL ACE,$(findstring $(lib),$(foreach libpath,. $(if $(ARCH),./$(ARCH)) ../../lib $(if $(ARCH),../../lib/$(ARCH)) /usr/lib /usr/lib64 $(INSLIB),$(wildcard $(libpath)/$(LIB_PREFIX)$(lib).* $(libpath)/$(lib).lib)))),ACE_ETCL ACE)
|
||||
ifeq ($(LIBCHECK),)
|
||||
LIBCHECK = 1
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifneq ($(LIBCHECK), 1)
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: lib_warning
|
||||
endif
|
||||
|
||||
LSRC = $(FILES)
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/macros.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.lib.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
|
||||
ifeq ($(VXWORKSLINK),1)
|
||||
include $(TGT_DIR)/h/make/rules.$(PRJ_TYPE)
|
||||
endif
|
||||
|
||||
ifeq ($(VXWORKSLINK),1)
|
||||
LDLIBPATH = -L. -L../../lib
|
||||
else
|
||||
LDFLAGS += -L. $(if $(ARCH),-L./$(ARCH)) -L../../lib $(if $(ARCH),-L../../lib/$(ARCH))
|
||||
endif
|
||||
CPPFLAGS += -I../..
|
||||
ifeq ($(shared_libs),1)
|
||||
ifneq ($(SHLIB),)
|
||||
CPPFLAGS += -DETCL_PARSER_BUILD_DLL
|
||||
endif
|
||||
endif
|
||||
ifeq ($(static_libs),1)
|
||||
CPPFLAGS += -DACE_AS_STATIC_LIBS
|
||||
endif
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Local targets
|
||||
#----------------------------------------------------------------------------
|
||||
lib_warning:
|
||||
@echo ACE_ETCL_Parser will not be built due to the following missing library: $(LIBCHECK) >&2
|
||||
|
||||
## Some OS's have /bin/test others only have /usr/bin/test
|
||||
ifeq ($(wildcard /bin/test), /bin/test)
|
||||
TEST_EXE = /bin/test
|
||||
else
|
||||
ifeq ($(wildcard /usr/bin/test), /usr/bin/test)
|
||||
TEST_EXE = /usr/bin/test
|
||||
endif
|
||||
endif
|
||||
|
||||
SPACE = $(should_be_unset) $(should_be_unset)
|
||||
ifneq ($(GENERATED_DIRTY),)
|
||||
.PRECIOUS: $(GENERATED_DIRTY)
|
||||
## If the generated files are anything but source files, we need to
|
||||
## ensure that those files are generated before we attempt to build anything
|
||||
## else.
|
||||
ifeq ($(OBJS_DEPEND_ON_GENERATED),1)
|
||||
$(VDIR)$(ACE_PCH_FILE) $(addprefix $(VDIR), $(OBJS)): $(GENERATED_DIRTY)
|
||||
$(VSHDIR)$(ACE_PCH_FILE) $(VSHOBJS): $(GENERATED_DIRTY)
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
realclean: clean
|
||||
ifneq ($(GENERATED_DIRTY),)
|
||||
-$(RM) -r $(GENERATED_DIRTY)
|
||||
endif
|
||||
|
||||
__prebuild__:
|
||||
@-:
|
||||
|
||||
|
||||
.PHONY: install
|
||||
install: all
|
||||
INSTALL_LIB ?= lib
|
||||
ifneq ($(INSTALL_PREFIX),)
|
||||
ifneq ($(install_rpath),0)
|
||||
LDFLAGS += -Wl,-R$(INSTALL_PREFIX)/$(INSTALL_LIB)
|
||||
endif
|
||||
endif
|
||||
|
||||
PRJINST_OPTIONS ?=
|
||||
INST_DIR ?= /ace/ETCL
|
||||
COMMA = ,
|
||||
SPACE = $(should_be_unset) $(should_be_unset)
|
||||
INSTALLER ?= $(MPC_ROOT)/prj_install.pl
|
||||
CUSTOM_INST_TAGS = $(sort )
|
||||
|
||||
LIB_INST_TAGS = header_files template_files$(if $(findstring 1,$(inline)), inline_files)$(if $(CUSTOM_INST_TAGS), $(CUSTOM_INST_TAGS))
|
||||
LIB_INST_LOCATIONS = $(foreach tag,$(LIB_INST_TAGS),-b $(tag)=include$(INST_DIR))
|
||||
|
||||
INST_TAGS = lib_output$(if $(LIB_INST_TAGS), $(LIB_INST_TAGS))
|
||||
INST_LOCATIONS = $(LIB_INST_LOCATIONS) -o lib_output=$(INSTALL_LIB)
|
||||
|
||||
DATA_INST_TAGS =
|
||||
INST_LOCATIONS += $(if $(DATA_INST_TAGS),-x installdata_files -b installdata_files=share$(INST_DIR))
|
||||
INST_TAGS := $(INST_TAGS)$(if $(DATA_INST_TAGS), $(DATA_INST_TAGS))
|
||||
|
||||
ifeq ($(INSTALLER),/prj_install.pl)
|
||||
INSTALLER = $(ACE_ROOT)/MPC/prj_install.pl
|
||||
endif
|
||||
|
||||
ifeq ($(LIBCHECK),1)
|
||||
install:
|
||||
ifeq ($(INST_TAGS),)
|
||||
@echo Nothing to install.
|
||||
else
|
||||
ifeq ($(INSTALL_PREFIX),)
|
||||
@echo The variable INSTALL_PREFIX must be set to install.
|
||||
@echo If binaries are already built and you want to use RPATH,
|
||||
@echo they must be rebuilt after changing INSTALL_PREFIX.
|
||||
@false
|
||||
else
|
||||
perl -ne'if (/^#END MPC-Generated Install Info/) {exit 0}' \
|
||||
-e'elsif (/^#BEGIN MPC-Generated Install Info/) {$$ok=1}' \
|
||||
-e'elsif ($$ok && s/^#//) {print}' $(MAKEFILE) | \
|
||||
$(INSTALLER) -i -s $(subst $(SPACE),$(COMMA),$(INST_TAGS)) \
|
||||
$(INST_LOCATIONS) $(if $(ARCH),-d $(ARCH)) $(PRJINST_OPTIONS) \
|
||||
$(INSTALL_PREFIX)
|
||||
$(ACE_ROOT)/bin/ace_install_pkgconfig.pl ACE_ETCL_Parser.pc.in --prefix $(INSTALL_PREFIX) --libdir $(INSTALL_LIB) --libs "$(LIBS)" --version $(GNUACE_PROJECT_VERSION)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
#BEGIN MPC-Generated Install Info
|
||||
#build_files:
|
||||
#ETCL.mpc
|
||||
#
|
||||
#header_files:
|
||||
#ETCL_Interpreter.h
|
||||
#ETCL_y.h
|
||||
#etcl_parser_export.h
|
||||
#
|
||||
#pkgconfig_files:
|
||||
#ACE_ETCL_Parser.pc.in
|
||||
#
|
||||
#source_files:
|
||||
#ETCL_Interpreter.cpp
|
||||
#ETCL_l.cpp
|
||||
#ETCL_y.cpp
|
||||
#
|
||||
#lib_output:
|
||||
#../../lib ACE_ETCL_Parser
|
||||
|
||||
#END MPC-Generated Install Info
|
||||
|
||||
|
|
@ -1,100 +0,0 @@
|
|||
## Process this file with automake to create Makefile.in
|
||||
##
|
||||
## $Id: Makefile.am 81667 2008-05-09 17:58:12Z jtc $
|
||||
##
|
||||
## This file was generated by MPC. Any changes made directly to
|
||||
## this file will be lost the next time it is generated.
|
||||
##
|
||||
## MPC Command:
|
||||
## ./bin/mwc.pl -type automake -noreldefs ACE.mwc
|
||||
|
||||
includedir = @includedir@/ace/ETCL
|
||||
pkgconfigdir = @libdir@/pkgconfig
|
||||
|
||||
ACE_BUILDDIR = $(top_builddir)
|
||||
ACE_ROOT = $(top_srcdir)
|
||||
|
||||
## Makefile.ACE_ETCL.am
|
||||
|
||||
lib_LTLIBRARIES = libACE_ETCL.la
|
||||
|
||||
libACE_ETCL_la_CPPFLAGS = \
|
||||
-I$(ACE_ROOT) \
|
||||
-I$(ACE_BUILDDIR) \
|
||||
-DACE_ETCL_BUILD_DLL
|
||||
|
||||
libACE_ETCL_la_SOURCES = \
|
||||
ETCL_Constraint.cpp \
|
||||
ETCL_Constraint_Visitor.cpp
|
||||
|
||||
libACE_ETCL_la_LDFLAGS = \
|
||||
-release @ACE_VERSION_NAME@
|
||||
|
||||
libACE_ETCL_la_LIBADD = \
|
||||
$(ACE_BUILDDIR)/ace/libACE.la
|
||||
|
||||
nobase_include_HEADERS = \
|
||||
ETCL_Constraint.h \
|
||||
ETCL_Constraint.inl \
|
||||
ETCL_Constraint_Visitor.h \
|
||||
ace_etcl_export.h
|
||||
|
||||
pkgconfig_DATA = \
|
||||
ACE_ETCL.pc
|
||||
|
||||
CLEANFILES = \
|
||||
ACE_ETCL.pc
|
||||
|
||||
ACE_ETCL.pc: ${top_builddir}/config.status ${srcdir}/ACE_ETCL.pc.in
|
||||
${top_builddir}/config.status --file "$@":${srcdir}/ACE_ETCL.pc.in
|
||||
|
||||
EXTRA_DIST = \
|
||||
ACE_ETCL.pc.in
|
||||
|
||||
|
||||
## Makefile.ACE_ETCL_Parser.am
|
||||
|
||||
lib_LTLIBRARIES += libACE_ETCL_Parser.la
|
||||
|
||||
libACE_ETCL_Parser_la_CPPFLAGS = \
|
||||
-I$(ACE_ROOT) \
|
||||
-I$(ACE_BUILDDIR) \
|
||||
-DETCL_PARSER_BUILD_DLL
|
||||
|
||||
libACE_ETCL_Parser_la_SOURCES = \
|
||||
ETCL_Interpreter.cpp \
|
||||
ETCL_l.cpp \
|
||||
ETCL_y.cpp
|
||||
|
||||
libACE_ETCL_Parser_la_LDFLAGS = \
|
||||
-release @ACE_VERSION_NAME@
|
||||
|
||||
libACE_ETCL_Parser_la_LIBADD = \
|
||||
libACE_ETCL.la \
|
||||
$(ACE_BUILDDIR)/ace/libACE.la
|
||||
|
||||
nobase_include_HEADERS += \
|
||||
ETCL_Interpreter.h \
|
||||
ETCL_y.h \
|
||||
etcl_parser_export.h
|
||||
|
||||
pkgconfig_DATA += \
|
||||
ACE_ETCL_Parser.pc
|
||||
|
||||
CLEANFILES += \
|
||||
ACE_ETCL_Parser.pc
|
||||
|
||||
ACE_ETCL_Parser.pc: ${top_builddir}/config.status ${srcdir}/ACE_ETCL_Parser.pc.in
|
||||
${top_builddir}/config.status --file "$@":${srcdir}/ACE_ETCL_Parser.pc.in
|
||||
|
||||
EXTRA_DIST += \
|
||||
ACE_ETCL_Parser.pc.in
|
||||
|
||||
|
||||
## Clean up template repositories, etc.
|
||||
clean-local:
|
||||
-rm -f *~ *.bak *.rpo *.sym lib*.*_pure_* core core.*
|
||||
-rm -f gcctemp.c gcctemp so_locations *.ics
|
||||
-rm -rf cxx_repository ptrepository ti_files
|
||||
-rm -rf templateregistry ir.out
|
||||
-rm -rf ptrepository SunWS_cache Templates.DB
|
||||
|
|
@ -1,756 +0,0 @@
|
|||
# Makefile.in generated by automake 1.11.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
|
||||
# Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
|
||||
|
||||
VPATH = @srcdir@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
target_triplet = @target@
|
||||
subdir = ace/ETCL
|
||||
DIST_COMMON = $(nobase_include_HEADERS) $(srcdir)/Makefile.am \
|
||||
$(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/ace.m4 \
|
||||
$(top_srcdir)/m4/ace_defines.m4 $(top_srcdir)/m4/ace_func.m4 \
|
||||
$(top_srcdir)/m4/ace_functions.m4 \
|
||||
$(top_srcdir)/m4/ace_headers.m4 $(top_srcdir)/m4/acinclude.m4 \
|
||||
$(top_srcdir)/m4/aio.m4 $(top_srcdir)/m4/compiler.m4 \
|
||||
$(top_srcdir)/m4/config_h.m4 $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
||||
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
|
||||
$(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/platform.m4 \
|
||||
$(top_srcdir)/m4/subsets.m4 $(top_srcdir)/m4/threads.m4 \
|
||||
$(top_srcdir)/m4/tls.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/ace/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
||||
am__install_max = 40
|
||||
am__nobase_strip_setup = \
|
||||
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
||||
am__nobase_strip = \
|
||||
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
||||
am__nobase_list = $(am__nobase_strip_setup); \
|
||||
for p in $$list; do echo "$$p $$p"; done | \
|
||||
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
||||
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
||||
if (++n[$$2] == $(am__install_max)) \
|
||||
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
||||
END { for (dir in files) print dir, files[dir] }'
|
||||
am__base_list = \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
||||
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \
|
||||
"$(DESTDIR)$(includedir)"
|
||||
LTLIBRARIES = $(lib_LTLIBRARIES)
|
||||
libACE_ETCL_la_DEPENDENCIES = $(ACE_BUILDDIR)/ace/libACE.la
|
||||
am_libACE_ETCL_la_OBJECTS = libACE_ETCL_la-ETCL_Constraint.lo \
|
||||
libACE_ETCL_la-ETCL_Constraint_Visitor.lo
|
||||
libACE_ETCL_la_OBJECTS = $(am_libACE_ETCL_la_OBJECTS)
|
||||
libACE_ETCL_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
|
||||
$(CXXFLAGS) $(libACE_ETCL_la_LDFLAGS) $(LDFLAGS) -o $@
|
||||
libACE_ETCL_Parser_la_DEPENDENCIES = libACE_ETCL.la \
|
||||
$(ACE_BUILDDIR)/ace/libACE.la
|
||||
am_libACE_ETCL_Parser_la_OBJECTS = \
|
||||
libACE_ETCL_Parser_la-ETCL_Interpreter.lo \
|
||||
libACE_ETCL_Parser_la-ETCL_l.lo \
|
||||
libACE_ETCL_Parser_la-ETCL_y.lo
|
||||
libACE_ETCL_Parser_la_OBJECTS = $(am_libACE_ETCL_Parser_la_OBJECTS)
|
||||
libACE_ETCL_Parser_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
|
||||
$(CXXFLAGS) $(libACE_ETCL_Parser_la_LDFLAGS) $(LDFLAGS) -o $@
|
||||
DEFAULT_INCLUDES =
|
||||
depcomp = $(SHELL) $(top_srcdir)/aux_config/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
CXXLD = $(CXX)
|
||||
CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
SOURCES = $(libACE_ETCL_la_SOURCES) $(libACE_ETCL_Parser_la_SOURCES)
|
||||
DIST_SOURCES = $(libACE_ETCL_la_SOURCES) \
|
||||
$(libACE_ETCL_Parser_la_SOURCES)
|
||||
DATA = $(pkgconfig_DATA)
|
||||
HEADERS = $(nobase_include_HEADERS)
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACEXML = @ACEXML@
|
||||
ACE_BETA = @ACE_BETA@
|
||||
ACE_BZIP2_CPPFLAGS = @ACE_BZIP2_CPPFLAGS@
|
||||
ACE_BZIP2_LDFLAGS = @ACE_BZIP2_LDFLAGS@
|
||||
ACE_BZIP2_LIBS = @ACE_BZIP2_LIBS@
|
||||
ACE_FLTK_CPPFLAGS = @ACE_FLTK_CPPFLAGS@
|
||||
ACE_FLTK_LIBS = @ACE_FLTK_LIBS@
|
||||
ACE_FOX_CPPFLAGS = @ACE_FOX_CPPFLAGS@
|
||||
ACE_FOX_LIBS = @ACE_FOX_LIBS@
|
||||
ACE_KERBEROS_INCLUDES = @ACE_KERBEROS_INCLUDES@
|
||||
ACE_MAJOR = @ACE_MAJOR@
|
||||
ACE_MINOR = @ACE_MINOR@
|
||||
ACE_QT_CPPFLAGS = @ACE_QT_CPPFLAGS@
|
||||
ACE_QT_LIBS = @ACE_QT_LIBS@
|
||||
ACE_TCL_CPPFLAGS = @ACE_TCL_CPPFLAGS@
|
||||
ACE_TCL_LIBS = @ACE_TCL_LIBS@
|
||||
ACE_TESTS_DIR = @ACE_TESTS_DIR@
|
||||
ACE_TK_CPPFLAGS = @ACE_TK_CPPFLAGS@
|
||||
ACE_TK_LIBS = @ACE_TK_LIBS@
|
||||
ACE_TLS_CPPFLAGS = @ACE_TLS_CPPFLAGS@
|
||||
ACE_TLS_LDFLAGS = @ACE_TLS_LDFLAGS@
|
||||
ACE_TLS_LIBS = @ACE_TLS_LIBS@
|
||||
ACE_VERSION_NAME = @ACE_VERSION_NAME@
|
||||
ACE_X11_CPPFLAGS = @ACE_X11_CPPFLAGS@
|
||||
ACE_X11_LDFLAGS = @ACE_X11_LDFLAGS@
|
||||
ACE_X11_LIBS = @ACE_X11_LIBS@
|
||||
ACE_XLIBS = @ACE_XLIBS@
|
||||
ACE_XT_CPPFLAGS = @ACE_XT_CPPFLAGS@
|
||||
ACE_XT_LDFLAGS = @ACE_XT_LDFLAGS@
|
||||
ACE_XT_LIBS = @ACE_XT_LIBS@
|
||||
ACE_ZLIB_CPPFLAGS = @ACE_ZLIB_CPPFLAGS@
|
||||
ACE_ZLIB_LDFLAGS = @ACE_ZLIB_LDFLAGS@
|
||||
ACE_ZLIB_LIBS = @ACE_ZLIB_LIBS@
|
||||
ACE_ZZIP_CPPFLAGS = @ACE_ZZIP_CPPFLAGS@
|
||||
ACE_ZZIP_LDFLAGS = @ACE_ZZIP_LDFLAGS@
|
||||
ACE_ZZIP_LIBS = @ACE_ZZIP_LIBS@
|
||||
ACLOCAL = @ACLOCAL@
|
||||
ALLOCA = @ALLOCA@
|
||||
AMTAR = @AMTAR@
|
||||
AR = @AR@
|
||||
ASNMP = @ASNMP@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
DSYMUTIL = @DSYMUTIL@
|
||||
DUMPBIN = @DUMPBIN@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
FGREP = @FGREP@
|
||||
FLTKCONFIG = @FLTKCONFIG@
|
||||
FOXCONFIG = @FOXCONFIG@
|
||||
GPERF = @GPERF@
|
||||
GREP = @GREP@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
KOKYU = @KOKYU@
|
||||
LD = @LD@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LEX = @LEX@
|
||||
LEXLIB = @LEXLIB@
|
||||
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIPO = @LIPO@
|
||||
LN_S = @LN_S@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MKDIR_P = @MKDIR_P@
|
||||
NM = @NM@
|
||||
NMEDIT = @NMEDIT@
|
||||
OBJDUMP = @OBJDUMP@
|
||||
OBJEXT = @OBJEXT@
|
||||
OTOOL = @OTOOL@
|
||||
OTOOL64 = @OTOOL64@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
PROF = @PROF@
|
||||
PURIFY = @PURIFY@
|
||||
QTDIR = @QTDIR@
|
||||
QUANTIFY = @QUANTIFY@
|
||||
Qt_CFLAGS = @Qt_CFLAGS@
|
||||
Qt_LIBS = @Qt_LIBS@
|
||||
RANLIB = @RANLIB@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
TAO = @TAO@
|
||||
VERSION = @VERSION@
|
||||
XMKMF = @XMKMF@
|
||||
XTREACTOR_TEST_XLIBS = @XTREACTOR_TEST_XLIBS@
|
||||
X_CFLAGS = @X_CFLAGS@
|
||||
X_EXTRA_LIBS = @X_EXTRA_LIBS@
|
||||
X_LIBS = @X_LIBS@
|
||||
X_PRE_LIBS = @X_PRE_LIBS@
|
||||
YACC = @YACC@
|
||||
YFLAGS = @YFLAGS@
|
||||
abs_builddir = @abs_builddir@
|
||||
abs_srcdir = @abs_srcdir@
|
||||
abs_top_builddir = @abs_top_builddir@
|
||||
abs_top_srcdir = @abs_top_srcdir@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
builddir = @builddir@
|
||||
datadir = @datadir@
|
||||
datarootdir = @datarootdir@
|
||||
docdir = @docdir@
|
||||
dvidir = @dvidir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
htmldir = @htmldir@
|
||||
includedir = @includedir@/ace/ETCL
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localedir = @localedir@
|
||||
localstatedir = @localstatedir@
|
||||
lt_ECHO = @lt_ECHO@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
protocols = @protocols@
|
||||
psdir = @psdir@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
srcdir = @srcdir@
|
||||
subdirs = @subdirs@
|
||||
sysconfdir = @sysconfdir@
|
||||
target = @target@
|
||||
target_alias = @target_alias@
|
||||
target_cpu = @target_cpu@
|
||||
target_os = @target_os@
|
||||
target_vendor = @target_vendor@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
pkgconfigdir = @libdir@/pkgconfig
|
||||
ACE_BUILDDIR = $(top_builddir)
|
||||
ACE_ROOT = $(top_srcdir)
|
||||
lib_LTLIBRARIES = libACE_ETCL.la libACE_ETCL_Parser.la
|
||||
libACE_ETCL_la_CPPFLAGS = \
|
||||
-I$(ACE_ROOT) \
|
||||
-I$(ACE_BUILDDIR) \
|
||||
-DACE_ETCL_BUILD_DLL
|
||||
|
||||
libACE_ETCL_la_SOURCES = \
|
||||
ETCL_Constraint.cpp \
|
||||
ETCL_Constraint_Visitor.cpp
|
||||
|
||||
libACE_ETCL_la_LDFLAGS = \
|
||||
-release @ACE_VERSION_NAME@
|
||||
|
||||
libACE_ETCL_la_LIBADD = \
|
||||
$(ACE_BUILDDIR)/ace/libACE.la
|
||||
|
||||
nobase_include_HEADERS = ETCL_Constraint.h ETCL_Constraint.inl \
|
||||
ETCL_Constraint_Visitor.h ace_etcl_export.h ETCL_Interpreter.h \
|
||||
ETCL_y.h etcl_parser_export.h
|
||||
pkgconfig_DATA = ACE_ETCL.pc ACE_ETCL_Parser.pc
|
||||
CLEANFILES = ACE_ETCL.pc ACE_ETCL_Parser.pc
|
||||
EXTRA_DIST = ACE_ETCL.pc.in ACE_ETCL_Parser.pc.in
|
||||
libACE_ETCL_Parser_la_CPPFLAGS = \
|
||||
-I$(ACE_ROOT) \
|
||||
-I$(ACE_BUILDDIR) \
|
||||
-DETCL_PARSER_BUILD_DLL
|
||||
|
||||
libACE_ETCL_Parser_la_SOURCES = \
|
||||
ETCL_Interpreter.cpp \
|
||||
ETCL_l.cpp \
|
||||
ETCL_y.cpp
|
||||
|
||||
libACE_ETCL_Parser_la_LDFLAGS = \
|
||||
-release @ACE_VERSION_NAME@
|
||||
|
||||
libACE_ETCL_Parser_la_LIBADD = \
|
||||
libACE_ETCL.la \
|
||||
$(ACE_BUILDDIR)/ace/libACE.la
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .cpp .lo .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign ace/ETCL/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --foreign ace/ETCL/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
|
||||
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
||||
list2=; for p in $$list; do \
|
||||
if test -f $$p; then \
|
||||
list2="$$list2 $$p"; \
|
||||
else :; fi; \
|
||||
done; \
|
||||
test -z "$$list2" || { \
|
||||
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
|
||||
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
|
||||
}
|
||||
|
||||
uninstall-libLTLIBRARIES:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
||||
for p in $$list; do \
|
||||
$(am__strip_dir) \
|
||||
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
|
||||
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
|
||||
done
|
||||
|
||||
clean-libLTLIBRARIES:
|
||||
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
||||
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
||||
test "$$dir" != "$$p" || dir=.; \
|
||||
echo "rm -f \"$${dir}/so_locations\""; \
|
||||
rm -f "$${dir}/so_locations"; \
|
||||
done
|
||||
libACE_ETCL.la: $(libACE_ETCL_la_OBJECTS) $(libACE_ETCL_la_DEPENDENCIES)
|
||||
$(libACE_ETCL_la_LINK) -rpath $(libdir) $(libACE_ETCL_la_OBJECTS) $(libACE_ETCL_la_LIBADD) $(LIBS)
|
||||
libACE_ETCL_Parser.la: $(libACE_ETCL_Parser_la_OBJECTS) $(libACE_ETCL_Parser_la_DEPENDENCIES)
|
||||
$(libACE_ETCL_Parser_la_LINK) -rpath $(libdir) $(libACE_ETCL_Parser_la_OBJECTS) $(libACE_ETCL_Parser_la_LIBADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_ETCL_Parser_la-ETCL_Interpreter.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_ETCL_Parser_la-ETCL_l.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_ETCL_Parser_la-ETCL_y.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_ETCL_la-ETCL_Constraint.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_ETCL_la-ETCL_Constraint_Visitor.Plo@am__quote@
|
||||
|
||||
.cpp.o:
|
||||
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
|
||||
|
||||
.cpp.obj:
|
||||
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
.cpp.lo:
|
||||
@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $<
|
||||
|
||||
libACE_ETCL_la-ETCL_Constraint.lo: ETCL_Constraint.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_ETCL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_ETCL_la-ETCL_Constraint.lo -MD -MP -MF $(DEPDIR)/libACE_ETCL_la-ETCL_Constraint.Tpo -c -o libACE_ETCL_la-ETCL_Constraint.lo `test -f 'ETCL_Constraint.cpp' || echo '$(srcdir)/'`ETCL_Constraint.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_ETCL_la-ETCL_Constraint.Tpo $(DEPDIR)/libACE_ETCL_la-ETCL_Constraint.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ETCL_Constraint.cpp' object='libACE_ETCL_la-ETCL_Constraint.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_ETCL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_ETCL_la-ETCL_Constraint.lo `test -f 'ETCL_Constraint.cpp' || echo '$(srcdir)/'`ETCL_Constraint.cpp
|
||||
|
||||
libACE_ETCL_la-ETCL_Constraint_Visitor.lo: ETCL_Constraint_Visitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_ETCL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_ETCL_la-ETCL_Constraint_Visitor.lo -MD -MP -MF $(DEPDIR)/libACE_ETCL_la-ETCL_Constraint_Visitor.Tpo -c -o libACE_ETCL_la-ETCL_Constraint_Visitor.lo `test -f 'ETCL_Constraint_Visitor.cpp' || echo '$(srcdir)/'`ETCL_Constraint_Visitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_ETCL_la-ETCL_Constraint_Visitor.Tpo $(DEPDIR)/libACE_ETCL_la-ETCL_Constraint_Visitor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ETCL_Constraint_Visitor.cpp' object='libACE_ETCL_la-ETCL_Constraint_Visitor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_ETCL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_ETCL_la-ETCL_Constraint_Visitor.lo `test -f 'ETCL_Constraint_Visitor.cpp' || echo '$(srcdir)/'`ETCL_Constraint_Visitor.cpp
|
||||
|
||||
libACE_ETCL_Parser_la-ETCL_Interpreter.lo: ETCL_Interpreter.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_ETCL_Parser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_ETCL_Parser_la-ETCL_Interpreter.lo -MD -MP -MF $(DEPDIR)/libACE_ETCL_Parser_la-ETCL_Interpreter.Tpo -c -o libACE_ETCL_Parser_la-ETCL_Interpreter.lo `test -f 'ETCL_Interpreter.cpp' || echo '$(srcdir)/'`ETCL_Interpreter.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_ETCL_Parser_la-ETCL_Interpreter.Tpo $(DEPDIR)/libACE_ETCL_Parser_la-ETCL_Interpreter.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ETCL_Interpreter.cpp' object='libACE_ETCL_Parser_la-ETCL_Interpreter.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_ETCL_Parser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_ETCL_Parser_la-ETCL_Interpreter.lo `test -f 'ETCL_Interpreter.cpp' || echo '$(srcdir)/'`ETCL_Interpreter.cpp
|
||||
|
||||
libACE_ETCL_Parser_la-ETCL_l.lo: ETCL_l.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_ETCL_Parser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_ETCL_Parser_la-ETCL_l.lo -MD -MP -MF $(DEPDIR)/libACE_ETCL_Parser_la-ETCL_l.Tpo -c -o libACE_ETCL_Parser_la-ETCL_l.lo `test -f 'ETCL_l.cpp' || echo '$(srcdir)/'`ETCL_l.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_ETCL_Parser_la-ETCL_l.Tpo $(DEPDIR)/libACE_ETCL_Parser_la-ETCL_l.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ETCL_l.cpp' object='libACE_ETCL_Parser_la-ETCL_l.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_ETCL_Parser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_ETCL_Parser_la-ETCL_l.lo `test -f 'ETCL_l.cpp' || echo '$(srcdir)/'`ETCL_l.cpp
|
||||
|
||||
libACE_ETCL_Parser_la-ETCL_y.lo: ETCL_y.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_ETCL_Parser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_ETCL_Parser_la-ETCL_y.lo -MD -MP -MF $(DEPDIR)/libACE_ETCL_Parser_la-ETCL_y.Tpo -c -o libACE_ETCL_Parser_la-ETCL_y.lo `test -f 'ETCL_y.cpp' || echo '$(srcdir)/'`ETCL_y.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_ETCL_Parser_la-ETCL_y.Tpo $(DEPDIR)/libACE_ETCL_Parser_la-ETCL_y.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ETCL_y.cpp' object='libACE_ETCL_Parser_la-ETCL_y.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_ETCL_Parser_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_ETCL_Parser_la-ETCL_y.lo `test -f 'ETCL_y.cpp' || echo '$(srcdir)/'`ETCL_y.cpp
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
install-pkgconfigDATA: $(pkgconfig_DATA)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
|
||||
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
||||
for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
echo "$$d$$p"; \
|
||||
done | $(am__base_list) | \
|
||||
while read files; do \
|
||||
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
|
||||
$(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
|
||||
done
|
||||
|
||||
uninstall-pkgconfigDATA:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
||||
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
||||
test -n "$$files" || exit 0; \
|
||||
echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
|
||||
cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
|
||||
install-nobase_includeHEADERS: $(nobase_include_HEADERS)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
|
||||
@list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \
|
||||
$(am__nobase_list) | while read dir files; do \
|
||||
xfiles=; for file in $$files; do \
|
||||
if test -f "$$file"; then xfiles="$$xfiles $$file"; \
|
||||
else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
|
||||
test -z "$$xfiles" || { \
|
||||
test "x$$dir" = x. || { \
|
||||
echo "$(MKDIR_P) '$(DESTDIR)$(includedir)/$$dir'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(includedir)/$$dir"; }; \
|
||||
echo " $(INSTALL_HEADER) $$xfiles '$(DESTDIR)$(includedir)/$$dir'"; \
|
||||
$(INSTALL_HEADER) $$xfiles "$(DESTDIR)$(includedir)/$$dir" || exit $$?; }; \
|
||||
done
|
||||
|
||||
uninstall-nobase_includeHEADERS:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \
|
||||
$(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
|
||||
test -n "$$files" || exit 0; \
|
||||
echo " ( cd '$(DESTDIR)$(includedir)' && rm -f" $$files ")"; \
|
||||
cd "$(DESTDIR)$(includedir)" && rm -f $$files
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(includedir)"; do \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
done
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libLTLIBRARIES clean-libtool clean-local \
|
||||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-nobase_includeHEADERS install-pkgconfigDATA
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am: install-libLTLIBRARIES
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-libLTLIBRARIES uninstall-nobase_includeHEADERS \
|
||||
uninstall-pkgconfigDATA
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||||
clean-libLTLIBRARIES clean-libtool clean-local ctags distclean \
|
||||
distclean-compile distclean-generic distclean-libtool \
|
||||
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-dvi \
|
||||
install-dvi-am install-exec install-exec-am install-html \
|
||||
install-html-am install-info install-info-am \
|
||||
install-libLTLIBRARIES install-man \
|
||||
install-nobase_includeHEADERS install-pdf install-pdf-am \
|
||||
install-pkgconfigDATA install-ps install-ps-am install-strip \
|
||||
installcheck installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags uninstall uninstall-am uninstall-libLTLIBRARIES \
|
||||
uninstall-nobase_includeHEADERS uninstall-pkgconfigDATA
|
||||
|
||||
|
||||
ACE_ETCL.pc: ${top_builddir}/config.status ${srcdir}/ACE_ETCL.pc.in
|
||||
${top_builddir}/config.status --file "$@":${srcdir}/ACE_ETCL.pc.in
|
||||
|
||||
ACE_ETCL_Parser.pc: ${top_builddir}/config.status ${srcdir}/ACE_ETCL_Parser.pc.in
|
||||
${top_builddir}/config.status --file "$@":${srcdir}/ACE_ETCL_Parser.pc.in
|
||||
|
||||
clean-local:
|
||||
-rm -f *~ *.bak *.rpo *.sym lib*.*_pure_* core core.*
|
||||
-rm -f gcctemp.c gcctemp so_locations *.ics
|
||||
-rm -rf cxx_repository ptrepository ti_files
|
||||
-rm -rf templateregistry ir.out
|
||||
-rm -rf ptrepository SunWS_cache Templates.DB
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libdir=@libdir@
|
||||
includedir=@includedir@
|
||||
|
||||
Name: ACE_FlReactor
|
||||
Description: ACE FlReactor Library
|
||||
Requires: ACE
|
||||
Version: @VERSION@
|
||||
Libs: -L${libdir} -lACE_FlReactor
|
||||
Cflags: -I${includedir}
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
# -*- makefile -*-
|
||||
#----------------------------------------------------------------------------
|
||||
# GNU ACE Workspace
|
||||
#
|
||||
# $Id: GNUACEWorkspaceCreator.pm 91813 2010-09-17 07:52:52Z johnnyw $
|
||||
#
|
||||
# This file was generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
# MPC Command:
|
||||
# /tmp/DOC_ROOT/stage-1367/ACE_wrappers/bin/mwc.pl -type gnuace -exclude "TAO/TAO_*.mwc,TAO/CIAO/CIAO_*.mwc" -recurse -hierarchy -relative ACE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers -relative TAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO -relative CIAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/CIAO -relative DANCE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/DAnCE
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
MAKEFILE = GNUmakefile
|
||||
|
||||
ifeq ($(findstring k,$(MAKEFLAGS)),k)
|
||||
KEEP_GOING = -
|
||||
endif
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/macros.GNU
|
||||
|
||||
all: ACE_FlReactor
|
||||
|
||||
REMAINING_TARGETS := $(filter-out all,$(TARGETS_NESTED:.nested=)) $(CUSTOM_TARGETS)
|
||||
|
||||
$(REMAINING_TARGETS):
|
||||
$(KEEP_GOING)@$(MAKE) -f GNUmakefile.ACE_FlReactor $(@)
|
||||
|
||||
.PHONY: ACE_FlReactor
|
||||
ACE_FlReactor:
|
||||
$(KEEP_GOING)@$(MAKE) -f GNUmakefile.ACE_FlReactor all
|
||||
|
||||
project_name_list:
|
||||
@echo ACE_FlReactor
|
||||
|
|
@ -1,290 +0,0 @@
|
|||
# -*- Makefile -*-
|
||||
#----------------------------------------------------------------------------
|
||||
# GNU Makefile
|
||||
#
|
||||
# @file GNUmakefile.ACE_FlReactor
|
||||
#
|
||||
# $Id: gnu.mpd 91974 2010-09-23 16:17:42Z mitza $
|
||||
#
|
||||
# This file was automatically generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
MAKEFILE = GNUmakefile.ACE_FlReactor
|
||||
DEPENDENCY_FILE = .depend.ACE_FlReactor
|
||||
|
||||
LIB_PREFIX ?= lib
|
||||
|
||||
## LIB_CHECKED may be set to empty later on in this file
|
||||
LIB_UNCHECKED = $(LIB_PREFIX)ACE_FlReactor.$(LIBEXT)
|
||||
LIB_CHECKED = $(LIB_UNCHECKED)
|
||||
LIB_NAME = $(LIB_PREFIX)ACE_FlReactor
|
||||
|
||||
## SHLIB may be set to empty later on in this file
|
||||
SHLIB_UNCHECKED = $(LIB_PREFIX)ACE_FlReactor.$(SOEXT)
|
||||
SHLIB = $(SHLIB_UNCHECKED)
|
||||
|
||||
FILES = \
|
||||
FlReactor.cpp
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Include macros and targets
|
||||
#----------------------------------------------------------------------------
|
||||
ACE_SHLIBS = -lACE
|
||||
|
||||
PRJ_TYPE = library
|
||||
|
||||
COLLAPSE_SLASHES = $(if $(findstring //,$(1)),$(call COLLAPSE_SLASHES,$(subst //,/,$(1))),$(1))
|
||||
INSLIB ?= $(call COLLAPSE_SLASHES,../../lib)
|
||||
ifeq ($(INSLIB),.)
|
||||
ifeq ($(CURDIR),)
|
||||
ifeq ($(PWD),)
|
||||
PWD=$(shell pwd)
|
||||
endif
|
||||
else
|
||||
PWD=$(CURDIR)
|
||||
endif
|
||||
INSLIB = $(PWD)
|
||||
endif
|
||||
OUTPUT_DIRECTORY = $(INSLIB)
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
|
||||
|
||||
|
||||
GNUACE_PROJECT_VERSION ?= $(ACE_VERSION)
|
||||
|
||||
# To build multiple targets in the same directory on AIX, it works
|
||||
# best to have a template directory per project.
|
||||
# The compiler/linker isn't too smart about instantiating templates...
|
||||
ifdef TEMPINCDIR
|
||||
TEMPINCDIR := $(TEMPINCDIR)/ACE_FlReactor
|
||||
all: $(TEMPINCDIR)
|
||||
endif
|
||||
|
||||
ifneq ($(OUTPUT_DIRECTORY),)
|
||||
.PHONY: create_output_directory.local
|
||||
all: create_output_directory.local
|
||||
create_output_directory.local:
|
||||
-@$(MKDIR) "$(OUTPUT_DIRECTORY)" $(ACE_NUL_STDERR)
|
||||
endif
|
||||
|
||||
# turn off libcheck if doing a dry run
|
||||
ifeq ($(findstring n, $(MAKEFLAGS)),n)
|
||||
LIBCHECK = 1
|
||||
else
|
||||
# turn off libcheck if keep going was passed too
|
||||
ifeq ($(findstring k, $(MAKEFLAGS)),k)
|
||||
LIBCHECK = 1
|
||||
else
|
||||
LIBCHECK ?= $(filter-out $(foreach lib,ACE,$(findstring $(lib),$(foreach libpath,. $(if $(ARCH),./$(ARCH)) ../../lib $(if $(ARCH),../../lib/$(ARCH)) /usr/lib /usr/lib64 $(INSLIB),$(wildcard $(libpath)/$(LIB_PREFIX)$(lib).* $(libpath)/$(lib).lib)))),ACE)
|
||||
ifeq ($(LIBCHECK),)
|
||||
LIBCHECK = 1
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(x11),1)
|
||||
ifeq ($(gl),1)
|
||||
ifeq ($(fl),1)
|
||||
ifneq ($(LIBCHECK), 1)
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: lib_warning
|
||||
endif
|
||||
else
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: require_warning
|
||||
endif
|
||||
else
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: require_warning
|
||||
endif
|
||||
else
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: require_warning
|
||||
endif
|
||||
|
||||
ifeq ($(x11),1)
|
||||
ifeq ($(gl),1)
|
||||
ifeq ($(fl),1)
|
||||
else
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: require_warning
|
||||
endif
|
||||
else
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: require_warning
|
||||
endif
|
||||
else
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: require_warning
|
||||
endif
|
||||
LSRC = $(FILES)
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/macros.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.lib.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
|
||||
ifeq ($(VXWORKSLINK),1)
|
||||
include $(TGT_DIR)/h/make/rules.$(PRJ_TYPE)
|
||||
endif
|
||||
|
||||
ifeq ($(VXWORKSLINK),1)
|
||||
LDLIBPATH = -L. -L../../lib
|
||||
else
|
||||
LDFLAGS += -L. $(if $(ARCH),-L./$(ARCH)) -L../../lib $(if $(ARCH),-L../../lib/$(ARCH))
|
||||
endif
|
||||
CPPFLAGS += -I../..
|
||||
ifeq ($(shared_libs),1)
|
||||
ifneq ($(SHLIB),)
|
||||
CPPFLAGS += -DACE_FLREACTOR_BUILD_DLL
|
||||
endif
|
||||
endif
|
||||
ifeq ($(static_libs),1)
|
||||
CPPFLAGS += -DACE_AS_STATIC_LIBS
|
||||
endif
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Local targets
|
||||
#----------------------------------------------------------------------------
|
||||
CPPFLAGS += $(PLATFORM_FL_CPPFLAGS)
|
||||
CPPFLAGS += $(PLATFORM_GL_CPPFLAGS) $(PLATFORM_X11_CPPFLAGS)
|
||||
LIBS += $(PLATFORM_FL_LIBS) $(PLATFORM_GL_LIBS) $(PLATFORM_X11_LIBS)
|
||||
LDFLAGS += $(PLATFORM_FL_LDFLAGS) $(PLATFORM_GL_LDFLAGS)
|
||||
LDFLAGS += $(PLATFORM_X11_LDFLAGS)
|
||||
|
||||
lib_warning:
|
||||
@echo ACE_FlReactor will not be built due to the following missing library: $(LIBCHECK) >&2
|
||||
|
||||
ifneq ($(x11),1)
|
||||
requires_disabled_macros += x11
|
||||
endif
|
||||
ifneq ($(gl),1)
|
||||
requires_disabled_macros += gl
|
||||
endif
|
||||
ifneq ($(fl),1)
|
||||
requires_disabled_macros += fl
|
||||
endif
|
||||
require_warning:
|
||||
@echo ACE_FlReactor will not be built due to the following disabled make macros: $(requires_disabled_macros)>&2
|
||||
|
||||
## Some OS's have /bin/test others only have /usr/bin/test
|
||||
ifeq ($(wildcard /bin/test), /bin/test)
|
||||
TEST_EXE = /bin/test
|
||||
else
|
||||
ifeq ($(wildcard /usr/bin/test), /usr/bin/test)
|
||||
TEST_EXE = /usr/bin/test
|
||||
endif
|
||||
endif
|
||||
|
||||
SPACE = $(should_be_unset) $(should_be_unset)
|
||||
ifneq ($(GENERATED_DIRTY),)
|
||||
.PRECIOUS: $(GENERATED_DIRTY)
|
||||
## If the generated files are anything but source files, we need to
|
||||
## ensure that those files are generated before we attempt to build anything
|
||||
## else.
|
||||
ifeq ($(OBJS_DEPEND_ON_GENERATED),1)
|
||||
$(VDIR)$(ACE_PCH_FILE) $(addprefix $(VDIR), $(OBJS)): $(GENERATED_DIRTY)
|
||||
$(VSHDIR)$(ACE_PCH_FILE) $(VSHOBJS): $(GENERATED_DIRTY)
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
realclean: clean
|
||||
ifneq ($(GENERATED_DIRTY),)
|
||||
-$(RM) -r $(GENERATED_DIRTY)
|
||||
endif
|
||||
|
||||
__prebuild__:
|
||||
ifeq ($(x11),1)
|
||||
ifeq ($(gl),1)
|
||||
ifeq ($(fl),1)
|
||||
@-:
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
.PHONY: install
|
||||
install: all
|
||||
INSTALL_LIB ?= lib
|
||||
ifneq ($(INSTALL_PREFIX),)
|
||||
ifneq ($(install_rpath),0)
|
||||
LDFLAGS += -Wl,-R$(INSTALL_PREFIX)/$(INSTALL_LIB)
|
||||
endif
|
||||
endif
|
||||
|
||||
PRJINST_OPTIONS ?=
|
||||
INST_DIR ?= /ace/FlReactor
|
||||
COMMA = ,
|
||||
SPACE = $(should_be_unset) $(should_be_unset)
|
||||
INSTALLER ?= $(MPC_ROOT)/prj_install.pl
|
||||
CUSTOM_INST_TAGS = $(sort )
|
||||
|
||||
LIB_INST_TAGS = header_files template_files$(if $(findstring 1,$(inline)), inline_files)$(if $(CUSTOM_INST_TAGS), $(CUSTOM_INST_TAGS))
|
||||
LIB_INST_LOCATIONS = $(foreach tag,$(LIB_INST_TAGS),-b $(tag)=include$(INST_DIR))
|
||||
|
||||
INST_TAGS = lib_output$(if $(LIB_INST_TAGS), $(LIB_INST_TAGS))
|
||||
INST_LOCATIONS = $(LIB_INST_LOCATIONS) -o lib_output=$(INSTALL_LIB)
|
||||
|
||||
DATA_INST_TAGS =
|
||||
INST_LOCATIONS += $(if $(DATA_INST_TAGS),-x installdata_files -b installdata_files=share$(INST_DIR))
|
||||
INST_TAGS := $(INST_TAGS)$(if $(DATA_INST_TAGS), $(DATA_INST_TAGS))
|
||||
|
||||
ifeq ($(INSTALLER),/prj_install.pl)
|
||||
INSTALLER = $(ACE_ROOT)/MPC/prj_install.pl
|
||||
endif
|
||||
|
||||
ifeq ($(LIBCHECK),1)
|
||||
ifeq ($(x11),1)
|
||||
ifeq ($(gl),1)
|
||||
ifeq ($(fl),1)
|
||||
install:
|
||||
ifeq ($(INST_TAGS),)
|
||||
@echo Nothing to install.
|
||||
else
|
||||
ifeq ($(INSTALL_PREFIX),)
|
||||
@echo The variable INSTALL_PREFIX must be set to install.
|
||||
@echo If binaries are already built and you want to use RPATH,
|
||||
@echo they must be rebuilt after changing INSTALL_PREFIX.
|
||||
@false
|
||||
else
|
||||
perl -ne'if (/^#END MPC-Generated Install Info/) {exit 0}' \
|
||||
-e'elsif (/^#BEGIN MPC-Generated Install Info/) {$$ok=1}' \
|
||||
-e'elsif ($$ok && s/^#//) {print}' $(MAKEFILE) | \
|
||||
$(INSTALLER) -i -s $(subst $(SPACE),$(COMMA),$(INST_TAGS)) \
|
||||
$(INST_LOCATIONS) $(if $(ARCH),-d $(ARCH)) $(PRJINST_OPTIONS) \
|
||||
$(INSTALL_PREFIX)
|
||||
$(ACE_ROOT)/bin/ace_install_pkgconfig.pl ACE_FlReactor.pc.in --prefix $(INSTALL_PREFIX) --libdir $(INSTALL_LIB) --libs "$(LIBS)" --version $(GNUACE_PROJECT_VERSION)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
#BEGIN MPC-Generated Install Info
|
||||
#build_files:
|
||||
#ace_flreactor.mpc
|
||||
#
|
||||
#header_files:
|
||||
#FlReactor.h
|
||||
#ACE_FlReactor_export.h
|
||||
#
|
||||
#pkgconfig_files:
|
||||
#ACE_FlReactor.pc.in
|
||||
#
|
||||
#source_files:
|
||||
#FlReactor.cpp
|
||||
#
|
||||
#lib_output:
|
||||
#../../lib ACE_FlReactor
|
||||
|
||||
#END MPC-Generated Install Info
|
||||
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
// -*- MPC -*- now wouldn't this be cool...
|
||||
// $Id: ace_flreactor.mpc 91839 2010-09-17 20:16:53Z mitza $
|
||||
|
||||
project(ACE_FlReactor) : acedefaults, install, acelib, ace_output, ace_fl{
|
||||
sharedname = ACE_FlReactor
|
||||
dynamicflags += ACE_FLREACTOR_BUILD_DLL
|
||||
|
||||
specific {
|
||||
install_dir = ace/FlReactor
|
||||
}
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libdir=@libdir@
|
||||
includedir=@includedir@
|
||||
|
||||
Name: ACE_FoxReactor
|
||||
Description: ACE FoxReactor Library
|
||||
Requires: ACE
|
||||
Version: @VERSION@
|
||||
Libs: -L${libdir} -lACE_FoxReactor
|
||||
Cflags: -I${includedir}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
// -*- MPC -*- now wouldn't this be cool...
|
||||
// $Id: ace_foxreactor.mpc 91839 2010-09-17 20:16:53Z mitza $
|
||||
|
||||
project(ACE_FoxReactor) : acedefaults, install, acelib, ace_output, ace_fox {
|
||||
sharedname = ACE_FoxReactor
|
||||
dynamicflags += ACE_FOXREACTOR_BUILD_DLL
|
||||
|
||||
specific {
|
||||
install_dir = ace/FoxReactor
|
||||
}
|
||||
}
|
||||
|
|
@ -1,89 +0,0 @@
|
|||
# -*- makefile -*-
|
||||
#----------------------------------------------------------------------------
|
||||
# GNU ACE Workspace
|
||||
#
|
||||
# $Id: GNUACEWorkspaceCreator.pm 91813 2010-09-17 07:52:52Z johnnyw $
|
||||
#
|
||||
# This file was generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
# MPC Command:
|
||||
# /tmp/DOC_ROOT/stage-1367/ACE_wrappers/bin/mwc.pl -type gnuace -exclude "TAO/TAO_*.mwc,TAO/CIAO/CIAO_*.mwc" -recurse -hierarchy -relative ACE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers -relative TAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO -relative CIAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/CIAO -relative DANCE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/DAnCE
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
MAKEFILE = GNUmakefile
|
||||
|
||||
ifeq ($(findstring k,$(MAKEFLAGS)),k)
|
||||
KEEP_GOING = -
|
||||
endif
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/macros.GNU
|
||||
|
||||
all: ACE ACE_ETCL ACE_ETCL_Parser ACE_FlReactor Monitor_Control-target ACE_Qt3Reactor_moc ACE_Qt3Reactor SSL-target ACE_TkReactor ACE_XtReactor
|
||||
|
||||
REMAINING_TARGETS := $(filter-out all,$(TARGETS_NESTED:.nested=)) $(CUSTOM_TARGETS)
|
||||
|
||||
$(REMAINING_TARGETS):
|
||||
$(KEEP_GOING)@$(MAKE) -f GNUmakefile.ACE $(@)
|
||||
$(KEEP_GOING)@cd ETCL && $(MAKE) -f GNUmakefile.ACE_ETCL $(@)
|
||||
$(KEEP_GOING)@cd ETCL && $(MAKE) -f GNUmakefile.ACE_ETCL_Parser $(@)
|
||||
$(KEEP_GOING)@cd FlReactor && $(MAKE) -f GNUmakefile.ACE_FlReactor $(@)
|
||||
$(KEEP_GOING)@cd Monitor_Control && $(MAKE) -f GNUmakefile.Monitor_Control $(@)
|
||||
$(KEEP_GOING)@cd QtReactor && $(MAKE) -f GNUmakefile.ACE_Qt3Reactor_moc $(@)
|
||||
$(KEEP_GOING)@cd QtReactor && $(MAKE) -f GNUmakefile.ACE_Qt3Reactor $(@)
|
||||
$(KEEP_GOING)@cd SSL && $(MAKE) -f GNUmakefile.SSL $(@)
|
||||
$(KEEP_GOING)@cd TkReactor && $(MAKE) -f GNUmakefile.ACE_TkReactor $(@)
|
||||
$(KEEP_GOING)@cd XtReactor && $(MAKE) -f GNUmakefile.ACE_XtReactor $(@)
|
||||
|
||||
.PHONY: ACE
|
||||
ACE:
|
||||
$(KEEP_GOING)@$(MAKE) -f GNUmakefile.ACE all
|
||||
|
||||
.PHONY: ACE_ETCL
|
||||
ACE_ETCL: ACE
|
||||
$(KEEP_GOING)@cd ETCL && $(MAKE) -f GNUmakefile.ACE_ETCL all
|
||||
|
||||
.PHONY: ACE_ETCL_Parser
|
||||
ACE_ETCL_Parser: ACE ACE_ETCL
|
||||
$(KEEP_GOING)@cd ETCL && $(MAKE) -f GNUmakefile.ACE_ETCL_Parser all
|
||||
|
||||
.PHONY: ACE_FlReactor
|
||||
ACE_FlReactor: ACE
|
||||
$(KEEP_GOING)@cd FlReactor && $(MAKE) -f GNUmakefile.ACE_FlReactor all
|
||||
|
||||
.PHONY: Monitor_Control-target
|
||||
Monitor_Control-target: ACE ACE_ETCL ACE_ETCL_Parser
|
||||
$(KEEP_GOING)@cd Monitor_Control && $(MAKE) -f GNUmakefile.Monitor_Control all
|
||||
|
||||
.PHONY: ACE_Qt3Reactor_moc
|
||||
ACE_Qt3Reactor_moc:
|
||||
$(KEEP_GOING)@cd QtReactor && $(MAKE) -f GNUmakefile.ACE_Qt3Reactor_moc all
|
||||
|
||||
.PHONY: ACE_Qt3Reactor
|
||||
ACE_Qt3Reactor: ACE ACE_Qt3Reactor_moc
|
||||
$(KEEP_GOING)@cd QtReactor && $(MAKE) -f GNUmakefile.ACE_Qt3Reactor all
|
||||
|
||||
.PHONY: SSL-target
|
||||
SSL-target: ACE
|
||||
$(KEEP_GOING)@cd SSL && $(MAKE) -f GNUmakefile.SSL all
|
||||
|
||||
.PHONY: ACE_TkReactor
|
||||
ACE_TkReactor: ACE
|
||||
$(KEEP_GOING)@cd TkReactor && $(MAKE) -f GNUmakefile.ACE_TkReactor all
|
||||
|
||||
.PHONY: ACE_XtReactor
|
||||
ACE_XtReactor: ACE
|
||||
$(KEEP_GOING)@cd XtReactor && $(MAKE) -f GNUmakefile.ACE_XtReactor all
|
||||
|
||||
project_name_list:
|
||||
@echo ACE_ETCL
|
||||
@echo ACE_ETCL_Parser
|
||||
@echo ACE_FlReactor
|
||||
@echo ACE
|
||||
@echo Monitor_Control-target
|
||||
@echo ACE_Qt3Reactor
|
||||
@echo ACE_Qt3Reactor_moc
|
||||
@echo SSL-target
|
||||
@echo ACE_TkReactor
|
||||
@echo ACE_XtReactor
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,73 +0,0 @@
|
|||
// -*- C++ -*-
|
||||
//
|
||||
// $Id: Hash_Cache_Map_Manager_T.inl 80826 2008-03-04 14:51:23Z wotte $
|
||||
|
||||
#define ACE_T1 class KEY, class VALUE, class HASH_KEY, class COMPARE_KEYS, class CACHING_STRATEGY, class ATTRIBUTES
|
||||
#define ACE_T2 KEY, VALUE, HASH_KEY, COMPARE_KEYS, CACHING_STRATEGY, ATTRIBUTES
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
template <ACE_T1> ACE_INLINE int
|
||||
ACE_Hash_Cache_Map_Manager<ACE_T2>::bind (const KEY &key,
|
||||
const VALUE &value)
|
||||
{
|
||||
return ACE_HCMM_BASE::bind (key,
|
||||
value);
|
||||
}
|
||||
|
||||
template <ACE_T1> ACE_INLINE int
|
||||
ACE_Hash_Cache_Map_Manager<ACE_T2>::rebind (const KEY &key,
|
||||
const VALUE &value)
|
||||
{
|
||||
return ACE_HCMM_BASE::rebind (key,
|
||||
value);
|
||||
}
|
||||
|
||||
template <ACE_T1> ACE_INLINE int
|
||||
ACE_Hash_Cache_Map_Manager<ACE_T2>::rebind (const KEY &key,
|
||||
const VALUE &value,
|
||||
VALUE &old_value)
|
||||
{
|
||||
return ACE_HCMM_BASE::rebind (key,
|
||||
value,
|
||||
old_value);
|
||||
}
|
||||
|
||||
template <ACE_T1> ACE_INLINE int
|
||||
ACE_Hash_Cache_Map_Manager<ACE_T2>::rebind (const KEY &key,
|
||||
const VALUE &value,
|
||||
KEY &old_key,
|
||||
VALUE &old_value)
|
||||
{
|
||||
return ACE_HCMM_BASE::rebind (key,
|
||||
value,
|
||||
old_key,
|
||||
old_value);
|
||||
}
|
||||
|
||||
template <ACE_T1> ACE_INLINE int
|
||||
ACE_Hash_Cache_Map_Manager<ACE_T2>::trybind (const KEY &key,
|
||||
VALUE &value)
|
||||
{
|
||||
return ACE_HCMM_BASE::trybind (key,
|
||||
value);
|
||||
}
|
||||
|
||||
template <ACE_T1> ACE_INLINE int
|
||||
ACE_Hash_Cache_Map_Manager<ACE_T2>::unbind (const KEY &key)
|
||||
{
|
||||
return ACE_HCMM_BASE::unbind (key);
|
||||
}
|
||||
|
||||
template <ACE_T1> ACE_INLINE int
|
||||
ACE_Hash_Cache_Map_Manager<ACE_T2>::unbind (const KEY &key,
|
||||
VALUE &value)
|
||||
{
|
||||
return ACE_HCMM_BASE::unbind (key,
|
||||
value);
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
#undef ACE_T1
|
||||
#undef ACE_T2
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
// -*- C++ -*-
|
||||
//
|
||||
// $Id: Lock_Adapter_T.inl 80826 2008-03-04 14:51:23Z wotte $
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
template <class ACE_LOCKING_MECHANISM>
|
||||
ACE_INLINE
|
||||
ACE_Lock_Adapter<ACE_LOCKING_MECHANISM>::ACE_Lock_Adapter (
|
||||
ACE_LOCKING_MECHANISM &lock)
|
||||
: lock_ (&lock),
|
||||
delete_lock_ (false)
|
||||
{
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,65 +0,0 @@
|
|||
// -*- C++ -*-
|
||||
//
|
||||
// $Id: Module.inl 80826 2008-03-04 14:51:23Z wotte $
|
||||
|
||||
#include "ace/OS_NS_string.h"
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
template <ACE_SYNCH_DECL> ACE_INLINE void *
|
||||
ACE_Module<ACE_SYNCH_USE>::arg (void) const
|
||||
{
|
||||
ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::arg");
|
||||
return this->arg_;
|
||||
}
|
||||
|
||||
template <ACE_SYNCH_DECL> ACE_INLINE void
|
||||
ACE_Module<ACE_SYNCH_USE>::arg (void *a)
|
||||
{
|
||||
ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::arg");
|
||||
this->arg_ = a;
|
||||
}
|
||||
|
||||
template <ACE_SYNCH_DECL> ACE_INLINE const ACE_TCHAR *
|
||||
ACE_Module<ACE_SYNCH_USE>::name (void) const
|
||||
{
|
||||
ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::name");
|
||||
return this->name_;
|
||||
}
|
||||
|
||||
template <ACE_SYNCH_DECL> ACE_INLINE void
|
||||
ACE_Module<ACE_SYNCH_USE>::name (const ACE_TCHAR *n)
|
||||
{
|
||||
ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::name");
|
||||
ACE_OS::strsncpy (this->name_, n, MAXPATHLEN);
|
||||
}
|
||||
|
||||
template <ACE_SYNCH_DECL> ACE_INLINE ACE_Task<ACE_SYNCH_USE> *
|
||||
ACE_Module<ACE_SYNCH_USE>::writer (void)
|
||||
{
|
||||
ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::writer");
|
||||
return this->q_pair_[1];
|
||||
}
|
||||
|
||||
template <ACE_SYNCH_DECL> ACE_INLINE ACE_Task<ACE_SYNCH_USE> *
|
||||
ACE_Module<ACE_SYNCH_USE>::reader (void)
|
||||
{
|
||||
ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::reader");
|
||||
return this->q_pair_[0];
|
||||
}
|
||||
|
||||
template <ACE_SYNCH_DECL> ACE_INLINE ACE_Module<ACE_SYNCH_USE> *
|
||||
ACE_Module<ACE_SYNCH_USE>::next (void)
|
||||
{
|
||||
ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::next");
|
||||
return this->next_;
|
||||
}
|
||||
|
||||
template <ACE_SYNCH_DECL> ACE_INLINE void
|
||||
ACE_Module<ACE_SYNCH_USE>::next (ACE_Module<ACE_SYNCH_USE> *m)
|
||||
{
|
||||
ACE_TRACE ("ACE_Module<ACE_SYNCH_USE>::next");
|
||||
this->next_ = m;
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
# -*- makefile -*-
|
||||
#----------------------------------------------------------------------------
|
||||
# GNU ACE Workspace
|
||||
#
|
||||
# $Id: GNUACEWorkspaceCreator.pm 91813 2010-09-17 07:52:52Z johnnyw $
|
||||
#
|
||||
# This file was generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
# MPC Command:
|
||||
# /tmp/DOC_ROOT/stage-1367/ACE_wrappers/bin/mwc.pl -type gnuace -exclude "TAO/TAO_*.mwc,TAO/CIAO/CIAO_*.mwc" -recurse -hierarchy -relative ACE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers -relative TAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO -relative CIAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/CIAO -relative DANCE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/DAnCE
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
MAKEFILE = GNUmakefile
|
||||
|
||||
ifeq ($(findstring k,$(MAKEFLAGS)),k)
|
||||
KEEP_GOING = -
|
||||
endif
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/macros.GNU
|
||||
|
||||
all: Monitor_Control
|
||||
|
||||
REMAINING_TARGETS := $(filter-out all,$(TARGETS_NESTED:.nested=)) $(CUSTOM_TARGETS)
|
||||
|
||||
$(REMAINING_TARGETS):
|
||||
$(KEEP_GOING)@$(MAKE) -f GNUmakefile.Monitor_Control $(@)
|
||||
|
||||
.PHONY: Monitor_Control
|
||||
Monitor_Control:
|
||||
$(KEEP_GOING)@$(MAKE) -f GNUmakefile.Monitor_Control all
|
||||
|
||||
project_name_list:
|
||||
@echo Monitor_Control
|
||||
|
|
@ -1,302 +0,0 @@
|
|||
# -*- Makefile -*-
|
||||
#----------------------------------------------------------------------------
|
||||
# GNU Makefile
|
||||
#
|
||||
# @file GNUmakefile.Monitor_Control
|
||||
#
|
||||
# $Id: gnu.mpd 91974 2010-09-23 16:17:42Z mitza $
|
||||
#
|
||||
# This file was automatically generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
MAKEFILE = GNUmakefile.Monitor_Control
|
||||
DEPENDENCY_FILE = .depend.Monitor_Control
|
||||
|
||||
LIB_PREFIX ?= lib
|
||||
|
||||
## LIB_CHECKED may be set to empty later on in this file
|
||||
LIB_UNCHECKED = $(LIB_PREFIX)ACE_Monitor_Control.$(LIBEXT)
|
||||
LIB_CHECKED = $(LIB_UNCHECKED)
|
||||
LIB_NAME = $(LIB_PREFIX)ACE_Monitor_Control
|
||||
|
||||
## SHLIB may be set to empty later on in this file
|
||||
SHLIB_UNCHECKED = $(LIB_PREFIX)ACE_Monitor_Control.$(SOEXT)
|
||||
SHLIB = $(SHLIB_UNCHECKED)
|
||||
|
||||
FILES = \
|
||||
Auto_Update_Starter.cpp \
|
||||
BSD_Network_Interface_Monitor.cpp \
|
||||
Bytes_Received_Monitor.cpp \
|
||||
Bytes_Sent_Monitor.cpp \
|
||||
Constraint_Interpreter.cpp \
|
||||
Constraint_Visitor.cpp \
|
||||
CPU_Load_Monitor.cpp \
|
||||
FreeBSD_Network_Interface_Monitor.cpp \
|
||||
Linux_Network_Interface_Monitor.cpp \
|
||||
Memory_Usage_Monitor.cpp \
|
||||
Monitor_Group.cpp \
|
||||
Monitor_Query.cpp \
|
||||
Null_Network_Interface_Monitor.cpp \
|
||||
Num_Threads_Monitor.cpp \
|
||||
Packets_Received_Monitor.cpp \
|
||||
Packets_Sent_Monitor.cpp \
|
||||
Solaris_Network_Interface_Monitor.cpp \
|
||||
Windows_Monitor.cpp \
|
||||
Windows_Multi_Instance_Monitor.cpp
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Include macros and targets
|
||||
#----------------------------------------------------------------------------
|
||||
ACE_SHLIBS = -lACE_ETCL_Parser -lACE_ETCL -lACE
|
||||
|
||||
PRJ_TYPE = library
|
||||
|
||||
COLLAPSE_SLASHES = $(if $(findstring //,$(1)),$(call COLLAPSE_SLASHES,$(subst //,/,$(1))),$(1))
|
||||
INSLIB ?= $(call COLLAPSE_SLASHES,../../lib)
|
||||
ifeq ($(INSLIB),.)
|
||||
ifeq ($(CURDIR),)
|
||||
ifeq ($(PWD),)
|
||||
PWD=$(shell pwd)
|
||||
endif
|
||||
else
|
||||
PWD=$(CURDIR)
|
||||
endif
|
||||
INSLIB = $(PWD)
|
||||
endif
|
||||
OUTPUT_DIRECTORY = $(INSLIB)
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
|
||||
|
||||
|
||||
GNUACE_PROJECT_VERSION ?= $(ACE_VERSION)
|
||||
|
||||
# To build multiple targets in the same directory on AIX, it works
|
||||
# best to have a template directory per project.
|
||||
# The compiler/linker isn't too smart about instantiating templates...
|
||||
ifdef TEMPINCDIR
|
||||
TEMPINCDIR := $(TEMPINCDIR)/Monitor_Control
|
||||
all: $(TEMPINCDIR)
|
||||
endif
|
||||
|
||||
ifneq ($(OUTPUT_DIRECTORY),)
|
||||
.PHONY: create_output_directory.local
|
||||
all: create_output_directory.local
|
||||
create_output_directory.local:
|
||||
-@$(MKDIR) "$(OUTPUT_DIRECTORY)" $(ACE_NUL_STDERR)
|
||||
endif
|
||||
|
||||
# turn off libcheck if doing a dry run
|
||||
ifeq ($(findstring n, $(MAKEFLAGS)),n)
|
||||
LIBCHECK = 1
|
||||
else
|
||||
# turn off libcheck if keep going was passed too
|
||||
ifeq ($(findstring k, $(MAKEFLAGS)),k)
|
||||
LIBCHECK = 1
|
||||
else
|
||||
LIBCHECK ?= $(filter-out $(foreach lib,ACE_ETCL_Parser ACE_ETCL ACE,$(findstring $(lib),$(foreach libpath,. $(if $(ARCH),./$(ARCH)) ../../lib $(if $(ARCH),../../lib/$(ARCH)) /usr/lib /usr/lib64 $(INSLIB),$(wildcard $(libpath)/$(LIB_PREFIX)$(lib).* $(libpath)/$(lib).lib)))),ACE_ETCL_Parser ACE_ETCL ACE)
|
||||
ifeq ($(LIBCHECK),)
|
||||
LIBCHECK = 1
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifneq ($(wince),1)
|
||||
ifneq ($(LIBCHECK), 1)
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: lib_warning
|
||||
endif
|
||||
else
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: avoid_warning
|
||||
endif
|
||||
|
||||
ifneq ($(wince),1)
|
||||
else
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: avoid_warning
|
||||
endif
|
||||
LSRC = $(FILES)
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/macros.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.lib.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
|
||||
ifeq ($(VXWORKSLINK),1)
|
||||
include $(TGT_DIR)/h/make/rules.$(PRJ_TYPE)
|
||||
endif
|
||||
|
||||
ifeq ($(VXWORKSLINK),1)
|
||||
LDLIBPATH = -L. -L../../lib
|
||||
else
|
||||
LDFLAGS += -L. $(if $(ARCH),-L./$(ARCH)) -L../../lib $(if $(ARCH),-L../../lib/$(ARCH))
|
||||
endif
|
||||
CPPFLAGS += -I../..
|
||||
ifeq ($(shared_libs),1)
|
||||
ifneq ($(SHLIB),)
|
||||
CPPFLAGS += -DMONITOR_CONTROL_BUILD_DLL
|
||||
endif
|
||||
endif
|
||||
ifeq ($(static_libs),1)
|
||||
CPPFLAGS += -DACE_AS_STATIC_LIBS
|
||||
endif
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Local targets
|
||||
#----------------------------------------------------------------------------
|
||||
ifeq (1,$(winnt))
|
||||
ACE_SHLIBS += pdh.lib
|
||||
endif
|
||||
|
||||
lib_warning:
|
||||
@echo Monitor_Control will not be built due to the following missing library: $(LIBCHECK) >&2
|
||||
|
||||
ifeq ($(wince),1)
|
||||
avoids_enabled_macros += wince
|
||||
endif
|
||||
avoid_warning:
|
||||
@echo Monitor_Control will not be built due to the following enabled make macros: $(avoids_enabled_macros)>&2
|
||||
|
||||
## Some OS's have /bin/test others only have /usr/bin/test
|
||||
ifeq ($(wildcard /bin/test), /bin/test)
|
||||
TEST_EXE = /bin/test
|
||||
else
|
||||
ifeq ($(wildcard /usr/bin/test), /usr/bin/test)
|
||||
TEST_EXE = /usr/bin/test
|
||||
endif
|
||||
endif
|
||||
|
||||
SPACE = $(should_be_unset) $(should_be_unset)
|
||||
ifneq ($(GENERATED_DIRTY),)
|
||||
.PRECIOUS: $(GENERATED_DIRTY)
|
||||
## If the generated files are anything but source files, we need to
|
||||
## ensure that those files are generated before we attempt to build anything
|
||||
## else.
|
||||
ifeq ($(OBJS_DEPEND_ON_GENERATED),1)
|
||||
$(VDIR)$(ACE_PCH_FILE) $(addprefix $(VDIR), $(OBJS)): $(GENERATED_DIRTY)
|
||||
$(VSHDIR)$(ACE_PCH_FILE) $(VSHOBJS): $(GENERATED_DIRTY)
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
realclean: clean
|
||||
ifneq ($(GENERATED_DIRTY),)
|
||||
-$(RM) -r $(GENERATED_DIRTY)
|
||||
endif
|
||||
|
||||
__prebuild__:
|
||||
ifneq ($(wince),1)
|
||||
@-:
|
||||
endif
|
||||
|
||||
|
||||
.PHONY: install
|
||||
install: all
|
||||
INSTALL_LIB ?= lib
|
||||
ifneq ($(INSTALL_PREFIX),)
|
||||
ifneq ($(install_rpath),0)
|
||||
LDFLAGS += -Wl,-R$(INSTALL_PREFIX)/$(INSTALL_LIB)
|
||||
endif
|
||||
endif
|
||||
|
||||
PRJINST_OPTIONS ?=
|
||||
INST_DIR ?= /ace/Monitor_Control
|
||||
COMMA = ,
|
||||
SPACE = $(should_be_unset) $(should_be_unset)
|
||||
INSTALLER ?= $(MPC_ROOT)/prj_install.pl
|
||||
CUSTOM_INST_TAGS = $(sort )
|
||||
|
||||
LIB_INST_TAGS = header_files template_files$(if $(findstring 1,$(inline)), inline_files)$(if $(CUSTOM_INST_TAGS), $(CUSTOM_INST_TAGS))
|
||||
LIB_INST_LOCATIONS = $(foreach tag,$(LIB_INST_TAGS),-b $(tag)=include$(INST_DIR))
|
||||
|
||||
INST_TAGS = lib_output$(if $(LIB_INST_TAGS), $(LIB_INST_TAGS))
|
||||
INST_LOCATIONS = $(LIB_INST_LOCATIONS) -o lib_output=$(INSTALL_LIB)
|
||||
|
||||
DATA_INST_TAGS =
|
||||
INST_LOCATIONS += $(if $(DATA_INST_TAGS),-x installdata_files -b installdata_files=share$(INST_DIR))
|
||||
INST_TAGS := $(INST_TAGS)$(if $(DATA_INST_TAGS), $(DATA_INST_TAGS))
|
||||
|
||||
ifeq ($(INSTALLER),/prj_install.pl)
|
||||
INSTALLER = $(ACE_ROOT)/MPC/prj_install.pl
|
||||
endif
|
||||
|
||||
ifeq ($(LIBCHECK),1)
|
||||
ifneq ($(wince),1)
|
||||
install:
|
||||
ifeq ($(INST_TAGS),)
|
||||
@echo Nothing to install.
|
||||
else
|
||||
ifeq ($(INSTALL_PREFIX),)
|
||||
@echo The variable INSTALL_PREFIX must be set to install.
|
||||
@echo If binaries are already built and you want to use RPATH,
|
||||
@echo they must be rebuilt after changing INSTALL_PREFIX.
|
||||
@false
|
||||
else
|
||||
perl -ne'if (/^#END MPC-Generated Install Info/) {exit 0}' \
|
||||
-e'elsif (/^#BEGIN MPC-Generated Install Info/) {$$ok=1}' \
|
||||
-e'elsif ($$ok && s/^#//) {print}' $(MAKEFILE) | \
|
||||
$(INSTALLER) -i -s $(subst $(SPACE),$(COMMA),$(INST_TAGS)) \
|
||||
$(INST_LOCATIONS) $(if $(ARCH),-d $(ARCH)) $(PRJINST_OPTIONS) \
|
||||
$(INSTALL_PREFIX)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
#BEGIN MPC-Generated Install Info
|
||||
#build_files:
|
||||
#Monitor_Control.mpc
|
||||
#
|
||||
#header_files:
|
||||
#Monitor_Control.h
|
||||
#Monitor_Control_export.h
|
||||
#Monitor_Control_utils.h
|
||||
#Packets_Sent_Monitor.h
|
||||
#Monitor_Group.h
|
||||
#Num_Threads_Monitor.h
|
||||
#Constraint_Visitor.h
|
||||
#Solaris_Network_Interface_Monitor.h
|
||||
#FreeBSD_Network_Interface_Monitor.h
|
||||
#Packets_Received_Monitor.h
|
||||
#Null_Network_Interface_Monitor.h
|
||||
#Windows_Monitor.h
|
||||
#BSD_Network_Interface_Monitor.h
|
||||
#CPU_Load_Monitor.h
|
||||
#Memory_Usage_Monitor.h
|
||||
#Constraint_Interpreter.h
|
||||
#Monitor_Query.h
|
||||
#Bytes_Received_Monitor.h
|
||||
#Auto_Update_Starter.h
|
||||
#Bytes_Sent_Monitor.h
|
||||
#Windows_Multi_Instance_Monitor.h
|
||||
#Linux_Network_Interface_Monitor.h
|
||||
#
|
||||
#source_files:
|
||||
#Auto_Update_Starter.cpp
|
||||
#BSD_Network_Interface_Monitor.cpp
|
||||
#Bytes_Received_Monitor.cpp
|
||||
#Bytes_Sent_Monitor.cpp
|
||||
#Constraint_Interpreter.cpp
|
||||
#Constraint_Visitor.cpp
|
||||
#CPU_Load_Monitor.cpp
|
||||
#FreeBSD_Network_Interface_Monitor.cpp
|
||||
#Linux_Network_Interface_Monitor.cpp
|
||||
#Memory_Usage_Monitor.cpp
|
||||
#Monitor_Group.cpp
|
||||
#Monitor_Query.cpp
|
||||
#Null_Network_Interface_Monitor.cpp
|
||||
#Num_Threads_Monitor.cpp
|
||||
#Packets_Received_Monitor.cpp
|
||||
#Packets_Sent_Monitor.cpp
|
||||
#Solaris_Network_Interface_Monitor.cpp
|
||||
#Windows_Monitor.cpp
|
||||
#Windows_Multi_Instance_Monitor.cpp
|
||||
#
|
||||
#lib_output:
|
||||
#../../lib ACE_Monitor_Control
|
||||
|
||||
#END MPC-Generated Install Info
|
||||
|
||||
|
|
@ -1,88 +0,0 @@
|
|||
## Process this file with automake to create Makefile.in
|
||||
##
|
||||
## $Id: Makefile.am 85937 2009-07-08 14:24:25Z parsons $
|
||||
##
|
||||
## This file was generated by MPC. Any changes made directly to
|
||||
## this file will be lost the next time it is generated.
|
||||
##
|
||||
## MPC Command:
|
||||
## ./bin/mwc.pl -type automake -noreldefs ACE.mwc
|
||||
|
||||
includedir = @includedir@/ace/Monitor_Control
|
||||
|
||||
ACE_BUILDDIR = $(top_builddir)
|
||||
ACE_ROOT = $(top_srcdir)
|
||||
|
||||
|
||||
## Makefile.Monitor_Control.am
|
||||
|
||||
if !BUILD_WINCE
|
||||
|
||||
lib_LTLIBRARIES = libACE_Monitor_Control.la
|
||||
|
||||
libACE_Monitor_Control_la_CPPFLAGS = \
|
||||
-I$(ACE_ROOT) \
|
||||
-I$(ACE_BUILDDIR) \
|
||||
-DMONITOR_CONTROL_BUILD_DLL
|
||||
|
||||
libACE_Monitor_Control_la_SOURCES = \
|
||||
Auto_Update_Starter.cpp \
|
||||
BSD_Network_Interface_Monitor.cpp \
|
||||
Bytes_Received_Monitor.cpp \
|
||||
Bytes_Sent_Monitor.cpp \
|
||||
CPU_Load_Monitor.cpp \
|
||||
Constraint_Interpreter.cpp \
|
||||
Constraint_Visitor.cpp \
|
||||
FreeBSD_Network_Interface_Monitor.cpp \
|
||||
Linux_Network_Interface_Monitor.cpp \
|
||||
Memory_Usage_Monitor.cpp \
|
||||
Monitor_Group.cpp \
|
||||
Monitor_Query.cpp \
|
||||
Null_Network_Interface_Monitor.cpp \
|
||||
Num_Threads_Monitor.cpp \
|
||||
Packets_Received_Monitor.cpp \
|
||||
Packets_Sent_Monitor.cpp \
|
||||
Solaris_Network_Interface_Monitor.cpp \
|
||||
Windows_Monitor.cpp \
|
||||
Windows_Multi_Instance_Monitor.cpp
|
||||
|
||||
libACE_Monitor_Control_la_LDFLAGS = \
|
||||
-release @ACE_VERSION_NAME@
|
||||
|
||||
libACE_Monitor_Control_la_LIBADD = \
|
||||
$(ACE_BUILDDIR)/ace/ETCL/libACE_ETCL_Parser.la \
|
||||
$(ACE_BUILDDIR)/ace/ETCL/libACE_ETCL.la \
|
||||
$(ACE_BUILDDIR)/ace/libACE.la
|
||||
|
||||
nobase_include_HEADERS = \
|
||||
Auto_Update_Starter.h \
|
||||
BSD_Network_Interface_Monitor.h \
|
||||
Bytes_Received_Monitor.h \
|
||||
Bytes_Sent_Monitor.h \
|
||||
CPU_Load_Monitor.h \
|
||||
Constraint_Interpreter.h \
|
||||
Constraint_Visitor.h \
|
||||
FreeBSD_Network_Interface_Monitor.h \
|
||||
Linux_Network_Interface_Monitor.h \
|
||||
Memory_Usage_Monitor.h \
|
||||
Monitor_Control.h \
|
||||
Monitor_Control_export.h \
|
||||
Monitor_Control_utils.h \
|
||||
Monitor_Group.h \
|
||||
Monitor_Query.h \
|
||||
Num_Threads_Monitor.h \
|
||||
Packets_Received_Monitor.h \
|
||||
Packets_Sent_Monitor.h \
|
||||
Solaris_Network_Interface_Monitor.h \
|
||||
Windows_Monitor.h \
|
||||
Windows_Multi_Instance_Monitor.h
|
||||
|
||||
endif !BUILD_WINCE
|
||||
|
||||
## Clean up template repositories, etc.
|
||||
clean-local:
|
||||
-rm -f *~ *.bak *.rpo *.sym lib*.*_pure_* core core.*
|
||||
-rm -f gcctemp.c gcctemp so_locations *.ics
|
||||
-rm -rf cxx_repository ptrepository ti_files
|
||||
-rm -rf templateregistry ir.out
|
||||
-rm -rf ptrepository SunWS_cache Templates.DB
|
||||
|
|
@ -1,887 +0,0 @@
|
|||
# Makefile.in generated by automake 1.11.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
|
||||
# Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
|
||||
VPATH = @srcdir@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
target_triplet = @target@
|
||||
subdir = ace/Monitor_Control
|
||||
DIST_COMMON = $(am__nobase_include_HEADERS_DIST) $(srcdir)/Makefile.am \
|
||||
$(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/ace.m4 \
|
||||
$(top_srcdir)/m4/ace_defines.m4 $(top_srcdir)/m4/ace_func.m4 \
|
||||
$(top_srcdir)/m4/ace_functions.m4 \
|
||||
$(top_srcdir)/m4/ace_headers.m4 $(top_srcdir)/m4/acinclude.m4 \
|
||||
$(top_srcdir)/m4/aio.m4 $(top_srcdir)/m4/compiler.m4 \
|
||||
$(top_srcdir)/m4/config_h.m4 $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
||||
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
|
||||
$(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/platform.m4 \
|
||||
$(top_srcdir)/m4/subsets.m4 $(top_srcdir)/m4/threads.m4 \
|
||||
$(top_srcdir)/m4/tls.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/ace/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
||||
am__install_max = 40
|
||||
am__nobase_strip_setup = \
|
||||
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
||||
am__nobase_strip = \
|
||||
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
||||
am__nobase_list = $(am__nobase_strip_setup); \
|
||||
for p in $$list; do echo "$$p $$p"; done | \
|
||||
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
||||
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
||||
if (++n[$$2] == $(am__install_max)) \
|
||||
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
||||
END { for (dir in files) print dir, files[dir] }'
|
||||
am__base_list = \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
||||
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"
|
||||
LTLIBRARIES = $(lib_LTLIBRARIES)
|
||||
@BUILD_WINCE_FALSE@libACE_Monitor_Control_la_DEPENDENCIES = $(ACE_BUILDDIR)/ace/ETCL/libACE_ETCL_Parser.la \
|
||||
@BUILD_WINCE_FALSE@ $(ACE_BUILDDIR)/ace/ETCL/libACE_ETCL.la \
|
||||
@BUILD_WINCE_FALSE@ $(ACE_BUILDDIR)/ace/libACE.la
|
||||
am__libACE_Monitor_Control_la_SOURCES_DIST = Auto_Update_Starter.cpp \
|
||||
BSD_Network_Interface_Monitor.cpp Bytes_Received_Monitor.cpp \
|
||||
Bytes_Sent_Monitor.cpp CPU_Load_Monitor.cpp \
|
||||
Constraint_Interpreter.cpp Constraint_Visitor.cpp \
|
||||
FreeBSD_Network_Interface_Monitor.cpp \
|
||||
Linux_Network_Interface_Monitor.cpp Memory_Usage_Monitor.cpp \
|
||||
Monitor_Group.cpp Monitor_Query.cpp \
|
||||
Null_Network_Interface_Monitor.cpp Num_Threads_Monitor.cpp \
|
||||
Packets_Received_Monitor.cpp Packets_Sent_Monitor.cpp \
|
||||
Solaris_Network_Interface_Monitor.cpp Windows_Monitor.cpp \
|
||||
Windows_Multi_Instance_Monitor.cpp
|
||||
@BUILD_WINCE_FALSE@am_libACE_Monitor_Control_la_OBJECTS = libACE_Monitor_Control_la-Auto_Update_Starter.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-BSD_Network_Interface_Monitor.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-Bytes_Received_Monitor.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-Bytes_Sent_Monitor.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-CPU_Load_Monitor.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-Constraint_Interpreter.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-Constraint_Visitor.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-FreeBSD_Network_Interface_Monitor.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-Linux_Network_Interface_Monitor.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-Memory_Usage_Monitor.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-Monitor_Group.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-Monitor_Query.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-Null_Network_Interface_Monitor.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-Num_Threads_Monitor.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-Packets_Received_Monitor.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-Packets_Sent_Monitor.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-Solaris_Network_Interface_Monitor.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-Windows_Monitor.lo \
|
||||
@BUILD_WINCE_FALSE@ libACE_Monitor_Control_la-Windows_Multi_Instance_Monitor.lo
|
||||
libACE_Monitor_Control_la_OBJECTS = \
|
||||
$(am_libACE_Monitor_Control_la_OBJECTS)
|
||||
libACE_Monitor_Control_la_LINK = $(LIBTOOL) --tag=CXX \
|
||||
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
|
||||
$(AM_CXXFLAGS) $(CXXFLAGS) \
|
||||
$(libACE_Monitor_Control_la_LDFLAGS) $(LDFLAGS) -o $@
|
||||
@BUILD_WINCE_FALSE@am_libACE_Monitor_Control_la_rpath = -rpath \
|
||||
@BUILD_WINCE_FALSE@ $(libdir)
|
||||
DEFAULT_INCLUDES =
|
||||
depcomp = $(SHELL) $(top_srcdir)/aux_config/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
CXXLD = $(CXX)
|
||||
CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
SOURCES = $(libACE_Monitor_Control_la_SOURCES)
|
||||
DIST_SOURCES = $(am__libACE_Monitor_Control_la_SOURCES_DIST)
|
||||
am__nobase_include_HEADERS_DIST = Auto_Update_Starter.h \
|
||||
BSD_Network_Interface_Monitor.h Bytes_Received_Monitor.h \
|
||||
Bytes_Sent_Monitor.h CPU_Load_Monitor.h \
|
||||
Constraint_Interpreter.h Constraint_Visitor.h \
|
||||
FreeBSD_Network_Interface_Monitor.h \
|
||||
Linux_Network_Interface_Monitor.h Memory_Usage_Monitor.h \
|
||||
Monitor_Control.h Monitor_Control_export.h \
|
||||
Monitor_Control_utils.h Monitor_Group.h Monitor_Query.h \
|
||||
Num_Threads_Monitor.h Packets_Received_Monitor.h \
|
||||
Packets_Sent_Monitor.h Solaris_Network_Interface_Monitor.h \
|
||||
Windows_Monitor.h Windows_Multi_Instance_Monitor.h
|
||||
HEADERS = $(nobase_include_HEADERS)
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACEXML = @ACEXML@
|
||||
ACE_BETA = @ACE_BETA@
|
||||
ACE_BZIP2_CPPFLAGS = @ACE_BZIP2_CPPFLAGS@
|
||||
ACE_BZIP2_LDFLAGS = @ACE_BZIP2_LDFLAGS@
|
||||
ACE_BZIP2_LIBS = @ACE_BZIP2_LIBS@
|
||||
ACE_FLTK_CPPFLAGS = @ACE_FLTK_CPPFLAGS@
|
||||
ACE_FLTK_LIBS = @ACE_FLTK_LIBS@
|
||||
ACE_FOX_CPPFLAGS = @ACE_FOX_CPPFLAGS@
|
||||
ACE_FOX_LIBS = @ACE_FOX_LIBS@
|
||||
ACE_KERBEROS_INCLUDES = @ACE_KERBEROS_INCLUDES@
|
||||
ACE_MAJOR = @ACE_MAJOR@
|
||||
ACE_MINOR = @ACE_MINOR@
|
||||
ACE_QT_CPPFLAGS = @ACE_QT_CPPFLAGS@
|
||||
ACE_QT_LIBS = @ACE_QT_LIBS@
|
||||
ACE_TCL_CPPFLAGS = @ACE_TCL_CPPFLAGS@
|
||||
ACE_TCL_LIBS = @ACE_TCL_LIBS@
|
||||
ACE_TESTS_DIR = @ACE_TESTS_DIR@
|
||||
ACE_TK_CPPFLAGS = @ACE_TK_CPPFLAGS@
|
||||
ACE_TK_LIBS = @ACE_TK_LIBS@
|
||||
ACE_TLS_CPPFLAGS = @ACE_TLS_CPPFLAGS@
|
||||
ACE_TLS_LDFLAGS = @ACE_TLS_LDFLAGS@
|
||||
ACE_TLS_LIBS = @ACE_TLS_LIBS@
|
||||
ACE_VERSION_NAME = @ACE_VERSION_NAME@
|
||||
ACE_X11_CPPFLAGS = @ACE_X11_CPPFLAGS@
|
||||
ACE_X11_LDFLAGS = @ACE_X11_LDFLAGS@
|
||||
ACE_X11_LIBS = @ACE_X11_LIBS@
|
||||
ACE_XLIBS = @ACE_XLIBS@
|
||||
ACE_XT_CPPFLAGS = @ACE_XT_CPPFLAGS@
|
||||
ACE_XT_LDFLAGS = @ACE_XT_LDFLAGS@
|
||||
ACE_XT_LIBS = @ACE_XT_LIBS@
|
||||
ACE_ZLIB_CPPFLAGS = @ACE_ZLIB_CPPFLAGS@
|
||||
ACE_ZLIB_LDFLAGS = @ACE_ZLIB_LDFLAGS@
|
||||
ACE_ZLIB_LIBS = @ACE_ZLIB_LIBS@
|
||||
ACE_ZZIP_CPPFLAGS = @ACE_ZZIP_CPPFLAGS@
|
||||
ACE_ZZIP_LDFLAGS = @ACE_ZZIP_LDFLAGS@
|
||||
ACE_ZZIP_LIBS = @ACE_ZZIP_LIBS@
|
||||
ACLOCAL = @ACLOCAL@
|
||||
ALLOCA = @ALLOCA@
|
||||
AMTAR = @AMTAR@
|
||||
AR = @AR@
|
||||
ASNMP = @ASNMP@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
DSYMUTIL = @DSYMUTIL@
|
||||
DUMPBIN = @DUMPBIN@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
FGREP = @FGREP@
|
||||
FLTKCONFIG = @FLTKCONFIG@
|
||||
FOXCONFIG = @FOXCONFIG@
|
||||
GPERF = @GPERF@
|
||||
GREP = @GREP@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
KOKYU = @KOKYU@
|
||||
LD = @LD@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LEX = @LEX@
|
||||
LEXLIB = @LEXLIB@
|
||||
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIPO = @LIPO@
|
||||
LN_S = @LN_S@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MKDIR_P = @MKDIR_P@
|
||||
NM = @NM@
|
||||
NMEDIT = @NMEDIT@
|
||||
OBJDUMP = @OBJDUMP@
|
||||
OBJEXT = @OBJEXT@
|
||||
OTOOL = @OTOOL@
|
||||
OTOOL64 = @OTOOL64@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
PROF = @PROF@
|
||||
PURIFY = @PURIFY@
|
||||
QTDIR = @QTDIR@
|
||||
QUANTIFY = @QUANTIFY@
|
||||
Qt_CFLAGS = @Qt_CFLAGS@
|
||||
Qt_LIBS = @Qt_LIBS@
|
||||
RANLIB = @RANLIB@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
TAO = @TAO@
|
||||
VERSION = @VERSION@
|
||||
XMKMF = @XMKMF@
|
||||
XTREACTOR_TEST_XLIBS = @XTREACTOR_TEST_XLIBS@
|
||||
X_CFLAGS = @X_CFLAGS@
|
||||
X_EXTRA_LIBS = @X_EXTRA_LIBS@
|
||||
X_LIBS = @X_LIBS@
|
||||
X_PRE_LIBS = @X_PRE_LIBS@
|
||||
YACC = @YACC@
|
||||
YFLAGS = @YFLAGS@
|
||||
abs_builddir = @abs_builddir@
|
||||
abs_srcdir = @abs_srcdir@
|
||||
abs_top_builddir = @abs_top_builddir@
|
||||
abs_top_srcdir = @abs_top_srcdir@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
builddir = @builddir@
|
||||
datadir = @datadir@
|
||||
datarootdir = @datarootdir@
|
||||
docdir = @docdir@
|
||||
dvidir = @dvidir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
htmldir = @htmldir@
|
||||
includedir = @includedir@/ace/Monitor_Control
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localedir = @localedir@
|
||||
localstatedir = @localstatedir@
|
||||
lt_ECHO = @lt_ECHO@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
protocols = @protocols@
|
||||
psdir = @psdir@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
srcdir = @srcdir@
|
||||
subdirs = @subdirs@
|
||||
sysconfdir = @sysconfdir@
|
||||
target = @target@
|
||||
target_alias = @target_alias@
|
||||
target_cpu = @target_cpu@
|
||||
target_os = @target_os@
|
||||
target_vendor = @target_vendor@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
ACE_BUILDDIR = $(top_builddir)
|
||||
ACE_ROOT = $(top_srcdir)
|
||||
@BUILD_WINCE_FALSE@lib_LTLIBRARIES = libACE_Monitor_Control.la
|
||||
@BUILD_WINCE_FALSE@libACE_Monitor_Control_la_CPPFLAGS = \
|
||||
@BUILD_WINCE_FALSE@ -I$(ACE_ROOT) \
|
||||
@BUILD_WINCE_FALSE@ -I$(ACE_BUILDDIR) \
|
||||
@BUILD_WINCE_FALSE@ -DMONITOR_CONTROL_BUILD_DLL
|
||||
|
||||
@BUILD_WINCE_FALSE@libACE_Monitor_Control_la_SOURCES = \
|
||||
@BUILD_WINCE_FALSE@ Auto_Update_Starter.cpp \
|
||||
@BUILD_WINCE_FALSE@ BSD_Network_Interface_Monitor.cpp \
|
||||
@BUILD_WINCE_FALSE@ Bytes_Received_Monitor.cpp \
|
||||
@BUILD_WINCE_FALSE@ Bytes_Sent_Monitor.cpp \
|
||||
@BUILD_WINCE_FALSE@ CPU_Load_Monitor.cpp \
|
||||
@BUILD_WINCE_FALSE@ Constraint_Interpreter.cpp \
|
||||
@BUILD_WINCE_FALSE@ Constraint_Visitor.cpp \
|
||||
@BUILD_WINCE_FALSE@ FreeBSD_Network_Interface_Monitor.cpp \
|
||||
@BUILD_WINCE_FALSE@ Linux_Network_Interface_Monitor.cpp \
|
||||
@BUILD_WINCE_FALSE@ Memory_Usage_Monitor.cpp \
|
||||
@BUILD_WINCE_FALSE@ Monitor_Group.cpp \
|
||||
@BUILD_WINCE_FALSE@ Monitor_Query.cpp \
|
||||
@BUILD_WINCE_FALSE@ Null_Network_Interface_Monitor.cpp \
|
||||
@BUILD_WINCE_FALSE@ Num_Threads_Monitor.cpp \
|
||||
@BUILD_WINCE_FALSE@ Packets_Received_Monitor.cpp \
|
||||
@BUILD_WINCE_FALSE@ Packets_Sent_Monitor.cpp \
|
||||
@BUILD_WINCE_FALSE@ Solaris_Network_Interface_Monitor.cpp \
|
||||
@BUILD_WINCE_FALSE@ Windows_Monitor.cpp \
|
||||
@BUILD_WINCE_FALSE@ Windows_Multi_Instance_Monitor.cpp
|
||||
|
||||
@BUILD_WINCE_FALSE@libACE_Monitor_Control_la_LDFLAGS = \
|
||||
@BUILD_WINCE_FALSE@ -release @ACE_VERSION_NAME@
|
||||
|
||||
@BUILD_WINCE_FALSE@libACE_Monitor_Control_la_LIBADD = \
|
||||
@BUILD_WINCE_FALSE@ $(ACE_BUILDDIR)/ace/ETCL/libACE_ETCL_Parser.la \
|
||||
@BUILD_WINCE_FALSE@ $(ACE_BUILDDIR)/ace/ETCL/libACE_ETCL.la \
|
||||
@BUILD_WINCE_FALSE@ $(ACE_BUILDDIR)/ace/libACE.la
|
||||
|
||||
@BUILD_WINCE_FALSE@nobase_include_HEADERS = \
|
||||
@BUILD_WINCE_FALSE@ Auto_Update_Starter.h \
|
||||
@BUILD_WINCE_FALSE@ BSD_Network_Interface_Monitor.h \
|
||||
@BUILD_WINCE_FALSE@ Bytes_Received_Monitor.h \
|
||||
@BUILD_WINCE_FALSE@ Bytes_Sent_Monitor.h \
|
||||
@BUILD_WINCE_FALSE@ CPU_Load_Monitor.h \
|
||||
@BUILD_WINCE_FALSE@ Constraint_Interpreter.h \
|
||||
@BUILD_WINCE_FALSE@ Constraint_Visitor.h \
|
||||
@BUILD_WINCE_FALSE@ FreeBSD_Network_Interface_Monitor.h \
|
||||
@BUILD_WINCE_FALSE@ Linux_Network_Interface_Monitor.h \
|
||||
@BUILD_WINCE_FALSE@ Memory_Usage_Monitor.h \
|
||||
@BUILD_WINCE_FALSE@ Monitor_Control.h \
|
||||
@BUILD_WINCE_FALSE@ Monitor_Control_export.h \
|
||||
@BUILD_WINCE_FALSE@ Monitor_Control_utils.h \
|
||||
@BUILD_WINCE_FALSE@ Monitor_Group.h \
|
||||
@BUILD_WINCE_FALSE@ Monitor_Query.h \
|
||||
@BUILD_WINCE_FALSE@ Num_Threads_Monitor.h \
|
||||
@BUILD_WINCE_FALSE@ Packets_Received_Monitor.h \
|
||||
@BUILD_WINCE_FALSE@ Packets_Sent_Monitor.h \
|
||||
@BUILD_WINCE_FALSE@ Solaris_Network_Interface_Monitor.h \
|
||||
@BUILD_WINCE_FALSE@ Windows_Monitor.h \
|
||||
@BUILD_WINCE_FALSE@ Windows_Multi_Instance_Monitor.h
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .cpp .lo .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign ace/Monitor_Control/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --foreign ace/Monitor_Control/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
|
||||
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
||||
list2=; for p in $$list; do \
|
||||
if test -f $$p; then \
|
||||
list2="$$list2 $$p"; \
|
||||
else :; fi; \
|
||||
done; \
|
||||
test -z "$$list2" || { \
|
||||
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
|
||||
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
|
||||
}
|
||||
|
||||
uninstall-libLTLIBRARIES:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
||||
for p in $$list; do \
|
||||
$(am__strip_dir) \
|
||||
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
|
||||
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
|
||||
done
|
||||
|
||||
clean-libLTLIBRARIES:
|
||||
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
||||
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
||||
test "$$dir" != "$$p" || dir=.; \
|
||||
echo "rm -f \"$${dir}/so_locations\""; \
|
||||
rm -f "$${dir}/so_locations"; \
|
||||
done
|
||||
libACE_Monitor_Control.la: $(libACE_Monitor_Control_la_OBJECTS) $(libACE_Monitor_Control_la_DEPENDENCIES)
|
||||
$(libACE_Monitor_Control_la_LINK) $(am_libACE_Monitor_Control_la_rpath) $(libACE_Monitor_Control_la_OBJECTS) $(libACE_Monitor_Control_la_LIBADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-Auto_Update_Starter.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-BSD_Network_Interface_Monitor.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-Bytes_Received_Monitor.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-Bytes_Sent_Monitor.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-CPU_Load_Monitor.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-Constraint_Interpreter.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-Constraint_Visitor.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-FreeBSD_Network_Interface_Monitor.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-Linux_Network_Interface_Monitor.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-Memory_Usage_Monitor.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-Monitor_Group.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-Monitor_Query.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-Null_Network_Interface_Monitor.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-Num_Threads_Monitor.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-Packets_Received_Monitor.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-Packets_Sent_Monitor.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-Solaris_Network_Interface_Monitor.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-Windows_Monitor.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_Monitor_Control_la-Windows_Multi_Instance_Monitor.Plo@am__quote@
|
||||
|
||||
.cpp.o:
|
||||
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
|
||||
|
||||
.cpp.obj:
|
||||
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
.cpp.lo:
|
||||
@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $<
|
||||
|
||||
libACE_Monitor_Control_la-Auto_Update_Starter.lo: Auto_Update_Starter.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-Auto_Update_Starter.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-Auto_Update_Starter.Tpo -c -o libACE_Monitor_Control_la-Auto_Update_Starter.lo `test -f 'Auto_Update_Starter.cpp' || echo '$(srcdir)/'`Auto_Update_Starter.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-Auto_Update_Starter.Tpo $(DEPDIR)/libACE_Monitor_Control_la-Auto_Update_Starter.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Auto_Update_Starter.cpp' object='libACE_Monitor_Control_la-Auto_Update_Starter.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-Auto_Update_Starter.lo `test -f 'Auto_Update_Starter.cpp' || echo '$(srcdir)/'`Auto_Update_Starter.cpp
|
||||
|
||||
libACE_Monitor_Control_la-BSD_Network_Interface_Monitor.lo: BSD_Network_Interface_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-BSD_Network_Interface_Monitor.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-BSD_Network_Interface_Monitor.Tpo -c -o libACE_Monitor_Control_la-BSD_Network_Interface_Monitor.lo `test -f 'BSD_Network_Interface_Monitor.cpp' || echo '$(srcdir)/'`BSD_Network_Interface_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-BSD_Network_Interface_Monitor.Tpo $(DEPDIR)/libACE_Monitor_Control_la-BSD_Network_Interface_Monitor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='BSD_Network_Interface_Monitor.cpp' object='libACE_Monitor_Control_la-BSD_Network_Interface_Monitor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-BSD_Network_Interface_Monitor.lo `test -f 'BSD_Network_Interface_Monitor.cpp' || echo '$(srcdir)/'`BSD_Network_Interface_Monitor.cpp
|
||||
|
||||
libACE_Monitor_Control_la-Bytes_Received_Monitor.lo: Bytes_Received_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-Bytes_Received_Monitor.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-Bytes_Received_Monitor.Tpo -c -o libACE_Monitor_Control_la-Bytes_Received_Monitor.lo `test -f 'Bytes_Received_Monitor.cpp' || echo '$(srcdir)/'`Bytes_Received_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-Bytes_Received_Monitor.Tpo $(DEPDIR)/libACE_Monitor_Control_la-Bytes_Received_Monitor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Bytes_Received_Monitor.cpp' object='libACE_Monitor_Control_la-Bytes_Received_Monitor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-Bytes_Received_Monitor.lo `test -f 'Bytes_Received_Monitor.cpp' || echo '$(srcdir)/'`Bytes_Received_Monitor.cpp
|
||||
|
||||
libACE_Monitor_Control_la-Bytes_Sent_Monitor.lo: Bytes_Sent_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-Bytes_Sent_Monitor.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-Bytes_Sent_Monitor.Tpo -c -o libACE_Monitor_Control_la-Bytes_Sent_Monitor.lo `test -f 'Bytes_Sent_Monitor.cpp' || echo '$(srcdir)/'`Bytes_Sent_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-Bytes_Sent_Monitor.Tpo $(DEPDIR)/libACE_Monitor_Control_la-Bytes_Sent_Monitor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Bytes_Sent_Monitor.cpp' object='libACE_Monitor_Control_la-Bytes_Sent_Monitor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-Bytes_Sent_Monitor.lo `test -f 'Bytes_Sent_Monitor.cpp' || echo '$(srcdir)/'`Bytes_Sent_Monitor.cpp
|
||||
|
||||
libACE_Monitor_Control_la-CPU_Load_Monitor.lo: CPU_Load_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-CPU_Load_Monitor.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-CPU_Load_Monitor.Tpo -c -o libACE_Monitor_Control_la-CPU_Load_Monitor.lo `test -f 'CPU_Load_Monitor.cpp' || echo '$(srcdir)/'`CPU_Load_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-CPU_Load_Monitor.Tpo $(DEPDIR)/libACE_Monitor_Control_la-CPU_Load_Monitor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='CPU_Load_Monitor.cpp' object='libACE_Monitor_Control_la-CPU_Load_Monitor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-CPU_Load_Monitor.lo `test -f 'CPU_Load_Monitor.cpp' || echo '$(srcdir)/'`CPU_Load_Monitor.cpp
|
||||
|
||||
libACE_Monitor_Control_la-Constraint_Interpreter.lo: Constraint_Interpreter.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-Constraint_Interpreter.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-Constraint_Interpreter.Tpo -c -o libACE_Monitor_Control_la-Constraint_Interpreter.lo `test -f 'Constraint_Interpreter.cpp' || echo '$(srcdir)/'`Constraint_Interpreter.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-Constraint_Interpreter.Tpo $(DEPDIR)/libACE_Monitor_Control_la-Constraint_Interpreter.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Constraint_Interpreter.cpp' object='libACE_Monitor_Control_la-Constraint_Interpreter.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-Constraint_Interpreter.lo `test -f 'Constraint_Interpreter.cpp' || echo '$(srcdir)/'`Constraint_Interpreter.cpp
|
||||
|
||||
libACE_Monitor_Control_la-Constraint_Visitor.lo: Constraint_Visitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-Constraint_Visitor.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-Constraint_Visitor.Tpo -c -o libACE_Monitor_Control_la-Constraint_Visitor.lo `test -f 'Constraint_Visitor.cpp' || echo '$(srcdir)/'`Constraint_Visitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-Constraint_Visitor.Tpo $(DEPDIR)/libACE_Monitor_Control_la-Constraint_Visitor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Constraint_Visitor.cpp' object='libACE_Monitor_Control_la-Constraint_Visitor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-Constraint_Visitor.lo `test -f 'Constraint_Visitor.cpp' || echo '$(srcdir)/'`Constraint_Visitor.cpp
|
||||
|
||||
libACE_Monitor_Control_la-FreeBSD_Network_Interface_Monitor.lo: FreeBSD_Network_Interface_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-FreeBSD_Network_Interface_Monitor.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-FreeBSD_Network_Interface_Monitor.Tpo -c -o libACE_Monitor_Control_la-FreeBSD_Network_Interface_Monitor.lo `test -f 'FreeBSD_Network_Interface_Monitor.cpp' || echo '$(srcdir)/'`FreeBSD_Network_Interface_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-FreeBSD_Network_Interface_Monitor.Tpo $(DEPDIR)/libACE_Monitor_Control_la-FreeBSD_Network_Interface_Monitor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='FreeBSD_Network_Interface_Monitor.cpp' object='libACE_Monitor_Control_la-FreeBSD_Network_Interface_Monitor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-FreeBSD_Network_Interface_Monitor.lo `test -f 'FreeBSD_Network_Interface_Monitor.cpp' || echo '$(srcdir)/'`FreeBSD_Network_Interface_Monitor.cpp
|
||||
|
||||
libACE_Monitor_Control_la-Linux_Network_Interface_Monitor.lo: Linux_Network_Interface_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-Linux_Network_Interface_Monitor.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-Linux_Network_Interface_Monitor.Tpo -c -o libACE_Monitor_Control_la-Linux_Network_Interface_Monitor.lo `test -f 'Linux_Network_Interface_Monitor.cpp' || echo '$(srcdir)/'`Linux_Network_Interface_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-Linux_Network_Interface_Monitor.Tpo $(DEPDIR)/libACE_Monitor_Control_la-Linux_Network_Interface_Monitor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Linux_Network_Interface_Monitor.cpp' object='libACE_Monitor_Control_la-Linux_Network_Interface_Monitor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-Linux_Network_Interface_Monitor.lo `test -f 'Linux_Network_Interface_Monitor.cpp' || echo '$(srcdir)/'`Linux_Network_Interface_Monitor.cpp
|
||||
|
||||
libACE_Monitor_Control_la-Memory_Usage_Monitor.lo: Memory_Usage_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-Memory_Usage_Monitor.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-Memory_Usage_Monitor.Tpo -c -o libACE_Monitor_Control_la-Memory_Usage_Monitor.lo `test -f 'Memory_Usage_Monitor.cpp' || echo '$(srcdir)/'`Memory_Usage_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-Memory_Usage_Monitor.Tpo $(DEPDIR)/libACE_Monitor_Control_la-Memory_Usage_Monitor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Memory_Usage_Monitor.cpp' object='libACE_Monitor_Control_la-Memory_Usage_Monitor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-Memory_Usage_Monitor.lo `test -f 'Memory_Usage_Monitor.cpp' || echo '$(srcdir)/'`Memory_Usage_Monitor.cpp
|
||||
|
||||
libACE_Monitor_Control_la-Monitor_Group.lo: Monitor_Group.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-Monitor_Group.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-Monitor_Group.Tpo -c -o libACE_Monitor_Control_la-Monitor_Group.lo `test -f 'Monitor_Group.cpp' || echo '$(srcdir)/'`Monitor_Group.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-Monitor_Group.Tpo $(DEPDIR)/libACE_Monitor_Control_la-Monitor_Group.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Monitor_Group.cpp' object='libACE_Monitor_Control_la-Monitor_Group.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-Monitor_Group.lo `test -f 'Monitor_Group.cpp' || echo '$(srcdir)/'`Monitor_Group.cpp
|
||||
|
||||
libACE_Monitor_Control_la-Monitor_Query.lo: Monitor_Query.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-Monitor_Query.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-Monitor_Query.Tpo -c -o libACE_Monitor_Control_la-Monitor_Query.lo `test -f 'Monitor_Query.cpp' || echo '$(srcdir)/'`Monitor_Query.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-Monitor_Query.Tpo $(DEPDIR)/libACE_Monitor_Control_la-Monitor_Query.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Monitor_Query.cpp' object='libACE_Monitor_Control_la-Monitor_Query.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-Monitor_Query.lo `test -f 'Monitor_Query.cpp' || echo '$(srcdir)/'`Monitor_Query.cpp
|
||||
|
||||
libACE_Monitor_Control_la-Null_Network_Interface_Monitor.lo: Null_Network_Interface_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-Null_Network_Interface_Monitor.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-Null_Network_Interface_Monitor.Tpo -c -o libACE_Monitor_Control_la-Null_Network_Interface_Monitor.lo `test -f 'Null_Network_Interface_Monitor.cpp' || echo '$(srcdir)/'`Null_Network_Interface_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-Null_Network_Interface_Monitor.Tpo $(DEPDIR)/libACE_Monitor_Control_la-Null_Network_Interface_Monitor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Null_Network_Interface_Monitor.cpp' object='libACE_Monitor_Control_la-Null_Network_Interface_Monitor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-Null_Network_Interface_Monitor.lo `test -f 'Null_Network_Interface_Monitor.cpp' || echo '$(srcdir)/'`Null_Network_Interface_Monitor.cpp
|
||||
|
||||
libACE_Monitor_Control_la-Num_Threads_Monitor.lo: Num_Threads_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-Num_Threads_Monitor.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-Num_Threads_Monitor.Tpo -c -o libACE_Monitor_Control_la-Num_Threads_Monitor.lo `test -f 'Num_Threads_Monitor.cpp' || echo '$(srcdir)/'`Num_Threads_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-Num_Threads_Monitor.Tpo $(DEPDIR)/libACE_Monitor_Control_la-Num_Threads_Monitor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Num_Threads_Monitor.cpp' object='libACE_Monitor_Control_la-Num_Threads_Monitor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-Num_Threads_Monitor.lo `test -f 'Num_Threads_Monitor.cpp' || echo '$(srcdir)/'`Num_Threads_Monitor.cpp
|
||||
|
||||
libACE_Monitor_Control_la-Packets_Received_Monitor.lo: Packets_Received_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-Packets_Received_Monitor.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-Packets_Received_Monitor.Tpo -c -o libACE_Monitor_Control_la-Packets_Received_Monitor.lo `test -f 'Packets_Received_Monitor.cpp' || echo '$(srcdir)/'`Packets_Received_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-Packets_Received_Monitor.Tpo $(DEPDIR)/libACE_Monitor_Control_la-Packets_Received_Monitor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Packets_Received_Monitor.cpp' object='libACE_Monitor_Control_la-Packets_Received_Monitor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-Packets_Received_Monitor.lo `test -f 'Packets_Received_Monitor.cpp' || echo '$(srcdir)/'`Packets_Received_Monitor.cpp
|
||||
|
||||
libACE_Monitor_Control_la-Packets_Sent_Monitor.lo: Packets_Sent_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-Packets_Sent_Monitor.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-Packets_Sent_Monitor.Tpo -c -o libACE_Monitor_Control_la-Packets_Sent_Monitor.lo `test -f 'Packets_Sent_Monitor.cpp' || echo '$(srcdir)/'`Packets_Sent_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-Packets_Sent_Monitor.Tpo $(DEPDIR)/libACE_Monitor_Control_la-Packets_Sent_Monitor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Packets_Sent_Monitor.cpp' object='libACE_Monitor_Control_la-Packets_Sent_Monitor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-Packets_Sent_Monitor.lo `test -f 'Packets_Sent_Monitor.cpp' || echo '$(srcdir)/'`Packets_Sent_Monitor.cpp
|
||||
|
||||
libACE_Monitor_Control_la-Solaris_Network_Interface_Monitor.lo: Solaris_Network_Interface_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-Solaris_Network_Interface_Monitor.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-Solaris_Network_Interface_Monitor.Tpo -c -o libACE_Monitor_Control_la-Solaris_Network_Interface_Monitor.lo `test -f 'Solaris_Network_Interface_Monitor.cpp' || echo '$(srcdir)/'`Solaris_Network_Interface_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-Solaris_Network_Interface_Monitor.Tpo $(DEPDIR)/libACE_Monitor_Control_la-Solaris_Network_Interface_Monitor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Solaris_Network_Interface_Monitor.cpp' object='libACE_Monitor_Control_la-Solaris_Network_Interface_Monitor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-Solaris_Network_Interface_Monitor.lo `test -f 'Solaris_Network_Interface_Monitor.cpp' || echo '$(srcdir)/'`Solaris_Network_Interface_Monitor.cpp
|
||||
|
||||
libACE_Monitor_Control_la-Windows_Monitor.lo: Windows_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-Windows_Monitor.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-Windows_Monitor.Tpo -c -o libACE_Monitor_Control_la-Windows_Monitor.lo `test -f 'Windows_Monitor.cpp' || echo '$(srcdir)/'`Windows_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-Windows_Monitor.Tpo $(DEPDIR)/libACE_Monitor_Control_la-Windows_Monitor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Windows_Monitor.cpp' object='libACE_Monitor_Control_la-Windows_Monitor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-Windows_Monitor.lo `test -f 'Windows_Monitor.cpp' || echo '$(srcdir)/'`Windows_Monitor.cpp
|
||||
|
||||
libACE_Monitor_Control_la-Windows_Multi_Instance_Monitor.lo: Windows_Multi_Instance_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_Monitor_Control_la-Windows_Multi_Instance_Monitor.lo -MD -MP -MF $(DEPDIR)/libACE_Monitor_Control_la-Windows_Multi_Instance_Monitor.Tpo -c -o libACE_Monitor_Control_la-Windows_Multi_Instance_Monitor.lo `test -f 'Windows_Multi_Instance_Monitor.cpp' || echo '$(srcdir)/'`Windows_Multi_Instance_Monitor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_Monitor_Control_la-Windows_Multi_Instance_Monitor.Tpo $(DEPDIR)/libACE_Monitor_Control_la-Windows_Multi_Instance_Monitor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Windows_Multi_Instance_Monitor.cpp' object='libACE_Monitor_Control_la-Windows_Multi_Instance_Monitor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_Monitor_Control_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_Monitor_Control_la-Windows_Multi_Instance_Monitor.lo `test -f 'Windows_Multi_Instance_Monitor.cpp' || echo '$(srcdir)/'`Windows_Multi_Instance_Monitor.cpp
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
install-nobase_includeHEADERS: $(nobase_include_HEADERS)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
|
||||
@list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \
|
||||
$(am__nobase_list) | while read dir files; do \
|
||||
xfiles=; for file in $$files; do \
|
||||
if test -f "$$file"; then xfiles="$$xfiles $$file"; \
|
||||
else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
|
||||
test -z "$$xfiles" || { \
|
||||
test "x$$dir" = x. || { \
|
||||
echo "$(MKDIR_P) '$(DESTDIR)$(includedir)/$$dir'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(includedir)/$$dir"; }; \
|
||||
echo " $(INSTALL_HEADER) $$xfiles '$(DESTDIR)$(includedir)/$$dir'"; \
|
||||
$(INSTALL_HEADER) $$xfiles "$(DESTDIR)$(includedir)/$$dir" || exit $$?; }; \
|
||||
done
|
||||
|
||||
uninstall-nobase_includeHEADERS:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \
|
||||
$(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
|
||||
test -n "$$files" || exit 0; \
|
||||
echo " ( cd '$(DESTDIR)$(includedir)' && rm -f" $$files ")"; \
|
||||
cd "$(DESTDIR)$(includedir)" && rm -f $$files
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(LTLIBRARIES) $(HEADERS)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"; do \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
done
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libLTLIBRARIES clean-libtool clean-local \
|
||||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-nobase_includeHEADERS
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am: install-libLTLIBRARIES
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-libLTLIBRARIES uninstall-nobase_includeHEADERS
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||||
clean-libLTLIBRARIES clean-libtool clean-local ctags distclean \
|
||||
distclean-compile distclean-generic distclean-libtool \
|
||||
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-dvi \
|
||||
install-dvi-am install-exec install-exec-am install-html \
|
||||
install-html-am install-info install-info-am \
|
||||
install-libLTLIBRARIES install-man \
|
||||
install-nobase_includeHEADERS install-pdf install-pdf-am \
|
||||
install-ps install-ps-am install-strip installcheck \
|
||||
installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags uninstall uninstall-am uninstall-libLTLIBRARIES \
|
||||
uninstall-nobase_includeHEADERS
|
||||
|
||||
|
||||
clean-local:
|
||||
-rm -f *~ *.bak *.rpo *.sym lib*.*_pure_* core core.*
|
||||
-rm -f gcctemp.c gcctemp so_locations *.ics
|
||||
-rm -rf cxx_repository ptrepository ti_files
|
||||
-rm -rf templateregistry ir.out
|
||||
-rm -rf ptrepository SunWS_cache Templates.DB
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
|
|
@ -1,49 +0,0 @@
|
|||
// -*- MPC -*-
|
||||
// $Id: Monitor_Control.mpc 90163 2010-05-18 21:42:20Z mitza $
|
||||
|
||||
project(Monitor_Control) : acelib, ace_etcl_parser, ace_output, install {
|
||||
dynamicflags += MONITOR_CONTROL_BUILD_DLL
|
||||
sharedname = ACE_Monitor_Control
|
||||
avoids += wince
|
||||
|
||||
Source_Files {
|
||||
Auto_Update_Starter.cpp
|
||||
BSD_Network_Interface_Monitor.cpp
|
||||
Bytes_Received_Monitor.cpp
|
||||
Bytes_Sent_Monitor.cpp
|
||||
Constraint_Interpreter.cpp
|
||||
Constraint_Visitor.cpp
|
||||
CPU_Load_Monitor.cpp
|
||||
FreeBSD_Network_Interface_Monitor.cpp
|
||||
Linux_Network_Interface_Monitor.cpp
|
||||
Memory_Usage_Monitor.cpp
|
||||
Monitor_Group.cpp
|
||||
Monitor_Query.cpp
|
||||
Null_Network_Interface_Monitor.cpp
|
||||
Num_Threads_Monitor.cpp
|
||||
Packets_Received_Monitor.cpp
|
||||
Packets_Sent_Monitor.cpp
|
||||
Solaris_Network_Interface_Monitor.cpp
|
||||
Windows_Monitor.cpp
|
||||
Windows_Multi_Instance_Monitor.cpp
|
||||
}
|
||||
|
||||
Header_Files {
|
||||
Monitor_Control.h
|
||||
Monitor_Control_export.h
|
||||
Monitor_Control_utils.h
|
||||
}
|
||||
|
||||
specific {
|
||||
install_dir = ace/Monitor_Control
|
||||
}
|
||||
|
||||
specific (prop:microsoft) {
|
||||
lit_libs += pdh
|
||||
}
|
||||
verbatim (gnuace, local) {
|
||||
"ifeq (1,$(winnt))"
|
||||
" ACE_SHLIBS += pdh.lib"
|
||||
"endif"
|
||||
}
|
||||
}
|
||||
Binary file not shown.
|
|
@ -1,33 +0,0 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||
# Visual Studio 2010
|
||||
# $Id: VC10WorkspaceCreator.pm 1890 2010-08-24 19:48:23Z mitza $
|
||||
#
|
||||
# This file was generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
# MPC Command:
|
||||
# /tmp/DOC_ROOT/stage-1367/ACE_wrappers/bin/mwc.pl -type vc10 -recurse -hierarchy -relative ACE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers -relative TAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO -relative CIAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/CIAO -relative DANCE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/DAnCE -name_modifier "*_vc10"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Monitor_Control", "Monitor_Control_vc10.vcxproj", "{7153B6F4-FECA-1BAD-D619-74620E01B14C}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
Debug|x64 = Debug|x64
|
||||
Release|Win32 = Release|Win32
|
||||
Release|x64 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{7153B6F4-FECA-1BAD-D619-74620E01B14C}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{7153B6F4-FECA-1BAD-D619-74620E01B14C}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{7153B6F4-FECA-1BAD-D619-74620E01B14C}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{7153B6F4-FECA-1BAD-D619-74620E01B14C}.Debug|x64.Build.0 = Debug|x64
|
||||
{7153B6F4-FECA-1BAD-D619-74620E01B14C}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{7153B6F4-FECA-1BAD-D619-74620E01B14C}.Release|Win32.Build.0 = Release|Win32
|
||||
{7153B6F4-FECA-1BAD-D619-74620E01B14C}.Release|x64.ActiveCfg = Release|x64
|
||||
{7153B6F4-FECA-1BAD-D619-74620E01B14C}.Release|x64.Build.0 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
|
@ -1,344 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectName>Monitor_Control</ProjectName>
|
||||
<ProjectGuid>{7153B6F4-FECA-1BAD-D619-74620E01B14C}</ProjectGuid>
|
||||
<RootNamespace>Monitor_Control</RootNamespace>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\..\lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\Monitor_Control_vc10\I386\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">ACE_Monitor_Controld</TargetName>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\Monitor_Control_vc10\I386\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">ACE_Monitor_Control</TargetName>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..\..\lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\Monitor_Control_vc10\AMD64\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">ACE_Monitor_Controld</TargetName>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..\..\lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\Monitor_Control_vc10\AMD64\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ACE_Monitor_Control</TargetName>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>MONITOR_CONTROL_BUILD_DLL;_DEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;MPC_LIB_MODIFIER="d";%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DisableSpecificWarnings>4355;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>1033</Culture>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>ACEd.lib;ACE_ETCLd.lib;ACE_ETCL_Parserd.lib;pdh.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)ACE_Monitor_Controld.dll</OutputFile>
|
||||
<AdditionalLibraryDirectories>.;..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ImportLibrary>..\..\lib\ACE_Monitor_Controld.lib</ImportLibrary>
|
||||
</Link>
|
||||
<!-- "postclean" was made-up by MPC for use by vs_postclean.pl.
|
||||
Check if msbuild has any support for a custom post-cleaning step
|
||||
-->
|
||||
<!-- No known equivalent for DeploymentTool in vc10:
|
||||
-->
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>MONITOR_CONTROL_BUILD_DLL;NDEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DisableSpecificWarnings>4355;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>1033</Culture>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>ACE.lib;ACE_ETCL.lib;ACE_ETCL_Parser.lib;pdh.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)ACE_Monitor_Control.dll</OutputFile>
|
||||
<AdditionalLibraryDirectories>.;..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<ImportLibrary>..\..\lib\ACE_Monitor_Control.lib</ImportLibrary>
|
||||
</Link>
|
||||
<!-- "postclean" was made-up by MPC for use by vs_postclean.pl.
|
||||
Check if msbuild has any support for a custom post-cleaning step
|
||||
-->
|
||||
<!-- No known equivalent for DeploymentTool in vc10:
|
||||
-->
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<TargetEnvironment>x64</TargetEnvironment>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>MONITOR_CONTROL_BUILD_DLL;_DEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_AMD64_;_WIN64;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;MPC_LIB_MODIFIER="d";%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DisableSpecificWarnings>4355;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>1033</Culture>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>ACEd.lib;ACE_ETCLd.lib;ACE_ETCL_Parserd.lib;pdh.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)ACE_Monitor_Controld.dll</OutputFile>
|
||||
<AdditionalLibraryDirectories>.;..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ImportLibrary>..\..\lib\ACE_Monitor_Controld.lib</ImportLibrary>
|
||||
<!--
|
||||
Though we can set TargetMachine explicitly, VC++
|
||||
can figure it out by project type. We don't need
|
||||
to set it by ourselves.
|
||||
-->
|
||||
<!-- <TargetMachine>0</TargetMachine>-->
|
||||
<AdditionalOptions>/machine:AMD64 %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
<!-- "postclean" was made-up by MPC for use by vs_postclean.pl.
|
||||
Check if msbuild has any support for a custom post-cleaning step
|
||||
-->
|
||||
<!-- No known equivalent for DeploymentTool in vc10:
|
||||
-->
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<TargetEnvironment>x64</TargetEnvironment>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>MONITOR_CONTROL_BUILD_DLL;NDEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_AMD64_;_WIN64;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DisableSpecificWarnings>4355;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>1033</Culture>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>ACE.lib;ACE_ETCL.lib;ACE_ETCL_Parser.lib;pdh.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)ACE_Monitor_Control.dll</OutputFile>
|
||||
<AdditionalLibraryDirectories>.;..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<ImportLibrary>..\..\lib\ACE_Monitor_Control.lib</ImportLibrary>
|
||||
<!--
|
||||
Though we can set TargetMachine explicitly, VC++
|
||||
can figure it out by project type. We don't need
|
||||
to set it by ourselves.
|
||||
-->
|
||||
<!-- <TargetMachine>0</TargetMachine>-->
|
||||
<AdditionalOptions>/machine:AMD64 %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
<!-- "postclean" was made-up by MPC for use by vs_postclean.pl.
|
||||
Check if msbuild has any support for a custom post-cleaning step
|
||||
-->
|
||||
<!-- No known equivalent for DeploymentTool in vc10:
|
||||
-->
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="Auto_Update_Starter.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="BSD_Network_Interface_Monitor.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="Bytes_Received_Monitor.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="Bytes_Sent_Monitor.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="Constraint_Interpreter.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="Constraint_Visitor.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="CPU_Load_Monitor.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="FreeBSD_Network_Interface_Monitor.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="Linux_Network_Interface_Monitor.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="Memory_Usage_Monitor.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="Monitor_Group.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="Monitor_Query.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="Null_Network_Interface_Monitor.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="Num_Threads_Monitor.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="Packets_Received_Monitor.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="Packets_Sent_Monitor.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="Solaris_Network_Interface_Monitor.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="Windows_Monitor.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="Windows_Multi_Instance_Monitor.cpp">
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="Auto_Update_Starter.h" />
|
||||
<ClInclude Include="BSD_Network_Interface_Monitor.h" />
|
||||
<ClInclude Include="Bytes_Received_Monitor.h" />
|
||||
<ClInclude Include="Bytes_Sent_Monitor.h" />
|
||||
<ClInclude Include="Constraint_Interpreter.h" />
|
||||
<ClInclude Include="Constraint_Visitor.h" />
|
||||
<ClInclude Include="CPU_Load_Monitor.h" />
|
||||
<ClInclude Include="FreeBSD_Network_Interface_Monitor.h" />
|
||||
<ClInclude Include="Linux_Network_Interface_Monitor.h" />
|
||||
<ClInclude Include="Memory_Usage_Monitor.h" />
|
||||
<ClInclude Include="Monitor_Control.h" />
|
||||
<ClInclude Include="Monitor_Control_export.h" />
|
||||
<ClInclude Include="Monitor_Control_utils.h" />
|
||||
<ClInclude Include="Monitor_Group.h" />
|
||||
<ClInclude Include="Monitor_Query.h" />
|
||||
<ClInclude Include="Null_Network_Interface_Monitor.h" />
|
||||
<ClInclude Include="Num_Threads_Monitor.h" />
|
||||
<ClInclude Include="Packets_Received_Monitor.h" />
|
||||
<ClInclude Include="Packets_Sent_Monitor.h" />
|
||||
<ClInclude Include="Solaris_Network_Interface_Monitor.h" />
|
||||
<ClInclude Include="Windows_Monitor.h" />
|
||||
<ClInclude Include="Windows_Multi_Instance_Monitor.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Monitor_Control.mpc">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
|
|
@ -1,149 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Source Files">
|
||||
<UniqueIdentifier>{B1F27843-FECA-1BAD-D619-74620E01B14C}</UniqueIdentifier>
|
||||
<Extensions>cpp;cxx;cc;c;C</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Header Files">
|
||||
<UniqueIdentifier>{06319535-FECA-1BAD-D619-74620E01B14C}</UniqueIdentifier>
|
||||
<Extensions>h;hpp;hxx;hh</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Build Files">
|
||||
<UniqueIdentifier>{A1909F1C-FECA-1BAD-D619-74620E01B14C}</UniqueIdentifier>
|
||||
<Extensions>mpc;mpb;mwc</Extensions>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="Auto_Update_Starter.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="BSD_Network_Interface_Monitor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Bytes_Received_Monitor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Bytes_Sent_Monitor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Constraint_Interpreter.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Constraint_Visitor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="CPU_Load_Monitor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="FreeBSD_Network_Interface_Monitor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Linux_Network_Interface_Monitor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Memory_Usage_Monitor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Monitor_Group.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Monitor_Query.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Null_Network_Interface_Monitor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Num_Threads_Monitor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Packets_Received_Monitor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Packets_Sent_Monitor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Solaris_Network_Interface_Monitor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Windows_Monitor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Windows_Multi_Instance_Monitor.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="Auto_Update_Starter.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="BSD_Network_Interface_Monitor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Bytes_Received_Monitor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Bytes_Sent_Monitor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Constraint_Interpreter.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Constraint_Visitor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="CPU_Load_Monitor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="FreeBSD_Network_Interface_Monitor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Linux_Network_Interface_Monitor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Memory_Usage_Monitor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Monitor_Control.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Monitor_Control_export.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Monitor_Control_utils.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Monitor_Group.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Monitor_Query.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Null_Network_Interface_Monitor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Num_Threads_Monitor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Packets_Received_Monitor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Packets_Sent_Monitor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Solaris_Network_Interface_Monitor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Windows_Monitor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Windows_Multi_Instance_Monitor.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Monitor_Control.mpc">
|
||||
<Filter>Build Files</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
@ -1,115 +0,0 @@
|
|||
// -*- C++ -*-
|
||||
//
|
||||
// $Id: OS_NS_pwd.inl 91781 2010-09-15 12:49:15Z johnnyw $
|
||||
|
||||
#include "ace/OS_NS_errno.h"
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
// Accessors to PWD file.
|
||||
|
||||
ACE_INLINE void
|
||||
ACE_OS::endpwent (void)
|
||||
{
|
||||
#if !defined (ACE_LACKS_PWD_FUNCTIONS)
|
||||
::endpwent ();
|
||||
#endif /* ! ACE_LACKS_PWD_FUNCTIONS */
|
||||
}
|
||||
|
||||
ACE_INLINE struct passwd *
|
||||
ACE_OS::getpwent (void)
|
||||
{
|
||||
#if !defined (ACE_LACKS_PWD_FUNCTIONS)
|
||||
return ::getpwent ();
|
||||
#else
|
||||
ACE_NOTSUP_RETURN (0);
|
||||
#endif /* ! ACE_LACKS_PWD_FUNCTIONS */
|
||||
}
|
||||
|
||||
ACE_INLINE struct passwd *
|
||||
ACE_OS::getpwnam (const char *name)
|
||||
{
|
||||
#if !defined (ACE_LACKS_PWD_FUNCTIONS)
|
||||
return ::getpwnam (name);
|
||||
# else
|
||||
ACE_UNUSED_ARG (name);
|
||||
ACE_NOTSUP_RETURN (0);
|
||||
#endif /* ACE_LACKS_PWD_FUNCTIONS */
|
||||
}
|
||||
|
||||
ACE_INLINE struct passwd *
|
||||
ACE_OS::getpwnam_r (const char *name, struct passwd *pwent,
|
||||
char *buffer, int buflen)
|
||||
{
|
||||
#if defined (ACE_HAS_POSIX_GETPWNAM_R)
|
||||
struct passwd *result = 0;
|
||||
|
||||
int const status = ::getpwnam_r (name, pwent, buffer, buflen, &result);
|
||||
|
||||
if (status != 0)
|
||||
{
|
||||
errno = status;
|
||||
result = 0;
|
||||
}
|
||||
return result;
|
||||
#elif !defined (ACE_LACKS_PWD_FUNCTIONS)
|
||||
# if defined (ACE_HAS_REENTRANT_FUNCTIONS)
|
||||
# if !defined (ACE_LACKS_PWD_REENTRANT_FUNCTIONS)
|
||||
# if defined (ACE_HAS_PTHREADS) && \
|
||||
!defined (ACE_HAS_STHREADS) || \
|
||||
defined (HPUX_11)
|
||||
struct passwd *result = 0;
|
||||
int status;
|
||||
// VAC++ doesn't correctly grok the ::getpwnam_r - the function is redefined
|
||||
// in pwd.h, and that redefinition is used here
|
||||
# if defined (__IBMCPP__) && (__IBMCPP__ >= 400) /* VAC++ 4 */
|
||||
status = _posix_getpwnam_r (name, pwent, buffer, buflen, &result);
|
||||
# else
|
||||
status = ::getpwnam_r (name, pwent, buffer, buflen, &result);
|
||||
# endif /* __IBMCPP__ && (__IBMCPP__ >= 400) */
|
||||
if (status != 0)
|
||||
{
|
||||
errno = status;
|
||||
result = 0;
|
||||
}
|
||||
return result;
|
||||
# elif defined (AIX)
|
||||
if (::getpwnam_r (name, pwent, buffer, buflen) == -1)
|
||||
return 0;
|
||||
else
|
||||
return pwent;
|
||||
# else
|
||||
return ::getpwnam_r (name, pwent, buffer, buflen);
|
||||
# endif /* ACE_HAS_PTHREADS */
|
||||
# else
|
||||
ACE_UNUSED_ARG (name);
|
||||
ACE_UNUSED_ARG (pwent);
|
||||
ACE_UNUSED_ARG (buffer);
|
||||
ACE_UNUSED_ARG (buflen);
|
||||
ACE_NOTSUP_RETURN (0);
|
||||
# endif /* ! ACE_LACKS_PWD_REENTRANT_FUNCTIONS */
|
||||
# else
|
||||
ACE_UNUSED_ARG (name);
|
||||
ACE_UNUSED_ARG (pwent);
|
||||
ACE_UNUSED_ARG (buffer);
|
||||
ACE_UNUSED_ARG (buflen);
|
||||
ACE_NOTSUP_RETURN (0);
|
||||
# endif /* ACE_HAS_REENTRANT_FUNCTIONS */
|
||||
#else
|
||||
ACE_UNUSED_ARG (name);
|
||||
ACE_UNUSED_ARG (pwent);
|
||||
ACE_UNUSED_ARG (buffer);
|
||||
ACE_UNUSED_ARG (buflen);
|
||||
ACE_NOTSUP_RETURN (0);
|
||||
#endif /* ACE_HAS_POSIX_GETPWNAM_R */
|
||||
}
|
||||
|
||||
ACE_INLINE void
|
||||
ACE_OS::setpwent (void)
|
||||
{
|
||||
#if !defined (ACE_LACKS_PWD_FUNCTIONS)
|
||||
::setpwent ();
|
||||
#endif /* ! ACE_LACKS_PWD_FUNCTIONS */
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libdir=@libdir@
|
||||
includedir=@includedir@
|
||||
|
||||
Name: ACE_QOS
|
||||
Description: ACE Quality of Service Library
|
||||
Requires: ACE
|
||||
Version: @VERSION@
|
||||
Libs: -L${libdir} -lACE_QoS
|
||||
Cflags: -I${includedir}
|
||||
|
|
@ -1,74 +0,0 @@
|
|||
## Process this file with automake to create Makefile.in
|
||||
##
|
||||
## $Id: Makefile.am 80826 2008-03-04 14:51:23Z wotte $
|
||||
##
|
||||
## This file was generated by MPC. Any changes made directly to
|
||||
## this file will be lost the next time it is generated.
|
||||
##
|
||||
## MPC Command:
|
||||
## /acebuilds/ACE_wrappers-repository/bin/mwc.pl -include /acebuilds/MPC/config -include /acebuilds/MPC/templates -feature_file /acebuilds/ACE_wrappers-repository/local.features -noreldefs -type automake -exclude build,Kokyu
|
||||
|
||||
includedir = @includedir@/ace/QoS
|
||||
pkgconfigdir = @libdir@/pkgconfig
|
||||
|
||||
ACE_BUILDDIR = $(top_builddir)
|
||||
ACE_ROOT = $(top_srcdir)
|
||||
|
||||
|
||||
## Makefile.QoS.am
|
||||
|
||||
if BUILD_QOS
|
||||
|
||||
lib_LTLIBRARIES = libACE_QoS.la
|
||||
|
||||
libACE_QoS_la_CPPFLAGS = \
|
||||
-I$(ACE_ROOT) \
|
||||
-I$(ACE_BUILDDIR) \
|
||||
-DACE_QoS_BUILD_DLL
|
||||
|
||||
libACE_QoS_la_SOURCES = \
|
||||
QoS_Decorator.cpp \
|
||||
QoS_Manager.cpp \
|
||||
QoS_Session_Factory.cpp \
|
||||
QoS_Session_Impl.cpp \
|
||||
SOCK_Dgram_Mcast_QoS.cpp
|
||||
|
||||
libACE_QoS_la_LDFLAGS = \
|
||||
-release @ACE_VERSION_NAME@
|
||||
|
||||
libACE_QoS_la_LIBADD = \
|
||||
$(ACE_BUILDDIR)/ace/libACE.la
|
||||
|
||||
nobase_include_HEADERS = \
|
||||
ACE_QoS_Export.h \
|
||||
QoS_Decorator.h \
|
||||
QoS_Manager.h \
|
||||
QoS_Session.h \
|
||||
QoS_Session_Factory.h \
|
||||
QoS_Session_Impl.h \
|
||||
QoS_Session_Impl.inl \
|
||||
SOCK_Dgram_Mcast_QoS.h \
|
||||
SOCK_Dgram_Mcast_QoS.inl
|
||||
|
||||
pkgconfig_DATA = \
|
||||
ACE_QoS.pc
|
||||
|
||||
CLEANFILES = \
|
||||
ACE_QoS.pc
|
||||
|
||||
ACE_QoS.pc: ${top_builddir}/config.status ${srcdir}/ACE_QoS.pc.in
|
||||
${top_builddir}/config.status --file $@:${srcdir}/ACE_QoS.pc.in
|
||||
|
||||
endif BUILD_QOS
|
||||
|
||||
EXTRA_DIST = \
|
||||
ACE_QoS.pc.in
|
||||
|
||||
|
||||
## Clean up template repositories, etc.
|
||||
clean-local:
|
||||
-rm -f *~ *.bak *.rpo *.sym lib*.*_pure_* core core.*
|
||||
-rm -f gcctemp.c gcctemp so_locations *.ics
|
||||
-rm -rf cxx_repository ptrepository ti_files
|
||||
-rm -rf templateregistry ir.out
|
||||
-rm -rf ptrepository SunWS_cache Templates.DB
|
||||
|
|
@ -1,753 +0,0 @@
|
|||
# Makefile.in generated by automake 1.11.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
|
||||
# Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
|
||||
|
||||
VPATH = @srcdir@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
target_triplet = @target@
|
||||
subdir = ace/QoS
|
||||
DIST_COMMON = README $(am__nobase_include_HEADERS_DIST) \
|
||||
$(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/ace.m4 \
|
||||
$(top_srcdir)/m4/ace_defines.m4 $(top_srcdir)/m4/ace_func.m4 \
|
||||
$(top_srcdir)/m4/ace_functions.m4 \
|
||||
$(top_srcdir)/m4/ace_headers.m4 $(top_srcdir)/m4/acinclude.m4 \
|
||||
$(top_srcdir)/m4/aio.m4 $(top_srcdir)/m4/compiler.m4 \
|
||||
$(top_srcdir)/m4/config_h.m4 $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
||||
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
|
||||
$(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/platform.m4 \
|
||||
$(top_srcdir)/m4/subsets.m4 $(top_srcdir)/m4/threads.m4 \
|
||||
$(top_srcdir)/m4/tls.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/ace/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
||||
am__install_max = 40
|
||||
am__nobase_strip_setup = \
|
||||
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
||||
am__nobase_strip = \
|
||||
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
||||
am__nobase_list = $(am__nobase_strip_setup); \
|
||||
for p in $$list; do echo "$$p $$p"; done | \
|
||||
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
||||
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
||||
if (++n[$$2] == $(am__install_max)) \
|
||||
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
||||
END { for (dir in files) print dir, files[dir] }'
|
||||
am__base_list = \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
||||
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \
|
||||
"$(DESTDIR)$(includedir)"
|
||||
LTLIBRARIES = $(lib_LTLIBRARIES)
|
||||
@BUILD_QOS_TRUE@libACE_QoS_la_DEPENDENCIES = \
|
||||
@BUILD_QOS_TRUE@ $(ACE_BUILDDIR)/ace/libACE.la
|
||||
am__libACE_QoS_la_SOURCES_DIST = QoS_Decorator.cpp QoS_Manager.cpp \
|
||||
QoS_Session_Factory.cpp QoS_Session_Impl.cpp \
|
||||
SOCK_Dgram_Mcast_QoS.cpp
|
||||
@BUILD_QOS_TRUE@am_libACE_QoS_la_OBJECTS = \
|
||||
@BUILD_QOS_TRUE@ libACE_QoS_la-QoS_Decorator.lo \
|
||||
@BUILD_QOS_TRUE@ libACE_QoS_la-QoS_Manager.lo \
|
||||
@BUILD_QOS_TRUE@ libACE_QoS_la-QoS_Session_Factory.lo \
|
||||
@BUILD_QOS_TRUE@ libACE_QoS_la-QoS_Session_Impl.lo \
|
||||
@BUILD_QOS_TRUE@ libACE_QoS_la-SOCK_Dgram_Mcast_QoS.lo
|
||||
libACE_QoS_la_OBJECTS = $(am_libACE_QoS_la_OBJECTS)
|
||||
libACE_QoS_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
|
||||
$(CXXFLAGS) $(libACE_QoS_la_LDFLAGS) $(LDFLAGS) -o $@
|
||||
@BUILD_QOS_TRUE@am_libACE_QoS_la_rpath = -rpath $(libdir)
|
||||
DEFAULT_INCLUDES =
|
||||
depcomp = $(SHELL) $(top_srcdir)/aux_config/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
CXXLD = $(CXX)
|
||||
CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
SOURCES = $(libACE_QoS_la_SOURCES)
|
||||
DIST_SOURCES = $(am__libACE_QoS_la_SOURCES_DIST)
|
||||
DATA = $(pkgconfig_DATA)
|
||||
am__nobase_include_HEADERS_DIST = ACE_QoS_Export.h QoS_Decorator.h \
|
||||
QoS_Manager.h QoS_Session.h QoS_Session_Factory.h \
|
||||
QoS_Session_Impl.h QoS_Session_Impl.inl SOCK_Dgram_Mcast_QoS.h \
|
||||
SOCK_Dgram_Mcast_QoS.inl
|
||||
HEADERS = $(nobase_include_HEADERS)
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACEXML = @ACEXML@
|
||||
ACE_BETA = @ACE_BETA@
|
||||
ACE_BZIP2_CPPFLAGS = @ACE_BZIP2_CPPFLAGS@
|
||||
ACE_BZIP2_LDFLAGS = @ACE_BZIP2_LDFLAGS@
|
||||
ACE_BZIP2_LIBS = @ACE_BZIP2_LIBS@
|
||||
ACE_FLTK_CPPFLAGS = @ACE_FLTK_CPPFLAGS@
|
||||
ACE_FLTK_LIBS = @ACE_FLTK_LIBS@
|
||||
ACE_FOX_CPPFLAGS = @ACE_FOX_CPPFLAGS@
|
||||
ACE_FOX_LIBS = @ACE_FOX_LIBS@
|
||||
ACE_KERBEROS_INCLUDES = @ACE_KERBEROS_INCLUDES@
|
||||
ACE_MAJOR = @ACE_MAJOR@
|
||||
ACE_MINOR = @ACE_MINOR@
|
||||
ACE_QT_CPPFLAGS = @ACE_QT_CPPFLAGS@
|
||||
ACE_QT_LIBS = @ACE_QT_LIBS@
|
||||
ACE_TCL_CPPFLAGS = @ACE_TCL_CPPFLAGS@
|
||||
ACE_TCL_LIBS = @ACE_TCL_LIBS@
|
||||
ACE_TESTS_DIR = @ACE_TESTS_DIR@
|
||||
ACE_TK_CPPFLAGS = @ACE_TK_CPPFLAGS@
|
||||
ACE_TK_LIBS = @ACE_TK_LIBS@
|
||||
ACE_TLS_CPPFLAGS = @ACE_TLS_CPPFLAGS@
|
||||
ACE_TLS_LDFLAGS = @ACE_TLS_LDFLAGS@
|
||||
ACE_TLS_LIBS = @ACE_TLS_LIBS@
|
||||
ACE_VERSION_NAME = @ACE_VERSION_NAME@
|
||||
ACE_X11_CPPFLAGS = @ACE_X11_CPPFLAGS@
|
||||
ACE_X11_LDFLAGS = @ACE_X11_LDFLAGS@
|
||||
ACE_X11_LIBS = @ACE_X11_LIBS@
|
||||
ACE_XLIBS = @ACE_XLIBS@
|
||||
ACE_XT_CPPFLAGS = @ACE_XT_CPPFLAGS@
|
||||
ACE_XT_LDFLAGS = @ACE_XT_LDFLAGS@
|
||||
ACE_XT_LIBS = @ACE_XT_LIBS@
|
||||
ACE_ZLIB_CPPFLAGS = @ACE_ZLIB_CPPFLAGS@
|
||||
ACE_ZLIB_LDFLAGS = @ACE_ZLIB_LDFLAGS@
|
||||
ACE_ZLIB_LIBS = @ACE_ZLIB_LIBS@
|
||||
ACE_ZZIP_CPPFLAGS = @ACE_ZZIP_CPPFLAGS@
|
||||
ACE_ZZIP_LDFLAGS = @ACE_ZZIP_LDFLAGS@
|
||||
ACE_ZZIP_LIBS = @ACE_ZZIP_LIBS@
|
||||
ACLOCAL = @ACLOCAL@
|
||||
ALLOCA = @ALLOCA@
|
||||
AMTAR = @AMTAR@
|
||||
AR = @AR@
|
||||
ASNMP = @ASNMP@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
DSYMUTIL = @DSYMUTIL@
|
||||
DUMPBIN = @DUMPBIN@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
FGREP = @FGREP@
|
||||
FLTKCONFIG = @FLTKCONFIG@
|
||||
FOXCONFIG = @FOXCONFIG@
|
||||
GPERF = @GPERF@
|
||||
GREP = @GREP@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
KOKYU = @KOKYU@
|
||||
LD = @LD@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LEX = @LEX@
|
||||
LEXLIB = @LEXLIB@
|
||||
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIPO = @LIPO@
|
||||
LN_S = @LN_S@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MKDIR_P = @MKDIR_P@
|
||||
NM = @NM@
|
||||
NMEDIT = @NMEDIT@
|
||||
OBJDUMP = @OBJDUMP@
|
||||
OBJEXT = @OBJEXT@
|
||||
OTOOL = @OTOOL@
|
||||
OTOOL64 = @OTOOL64@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
PROF = @PROF@
|
||||
PURIFY = @PURIFY@
|
||||
QTDIR = @QTDIR@
|
||||
QUANTIFY = @QUANTIFY@
|
||||
Qt_CFLAGS = @Qt_CFLAGS@
|
||||
Qt_LIBS = @Qt_LIBS@
|
||||
RANLIB = @RANLIB@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
TAO = @TAO@
|
||||
VERSION = @VERSION@
|
||||
XMKMF = @XMKMF@
|
||||
XTREACTOR_TEST_XLIBS = @XTREACTOR_TEST_XLIBS@
|
||||
X_CFLAGS = @X_CFLAGS@
|
||||
X_EXTRA_LIBS = @X_EXTRA_LIBS@
|
||||
X_LIBS = @X_LIBS@
|
||||
X_PRE_LIBS = @X_PRE_LIBS@
|
||||
YACC = @YACC@
|
||||
YFLAGS = @YFLAGS@
|
||||
abs_builddir = @abs_builddir@
|
||||
abs_srcdir = @abs_srcdir@
|
||||
abs_top_builddir = @abs_top_builddir@
|
||||
abs_top_srcdir = @abs_top_srcdir@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
builddir = @builddir@
|
||||
datadir = @datadir@
|
||||
datarootdir = @datarootdir@
|
||||
docdir = @docdir@
|
||||
dvidir = @dvidir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
htmldir = @htmldir@
|
||||
includedir = @includedir@/ace/QoS
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localedir = @localedir@
|
||||
localstatedir = @localstatedir@
|
||||
lt_ECHO = @lt_ECHO@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
protocols = @protocols@
|
||||
psdir = @psdir@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
srcdir = @srcdir@
|
||||
subdirs = @subdirs@
|
||||
sysconfdir = @sysconfdir@
|
||||
target = @target@
|
||||
target_alias = @target_alias@
|
||||
target_cpu = @target_cpu@
|
||||
target_os = @target_os@
|
||||
target_vendor = @target_vendor@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
pkgconfigdir = @libdir@/pkgconfig
|
||||
ACE_BUILDDIR = $(top_builddir)
|
||||
ACE_ROOT = $(top_srcdir)
|
||||
@BUILD_QOS_TRUE@lib_LTLIBRARIES = libACE_QoS.la
|
||||
@BUILD_QOS_TRUE@libACE_QoS_la_CPPFLAGS = \
|
||||
@BUILD_QOS_TRUE@ -I$(ACE_ROOT) \
|
||||
@BUILD_QOS_TRUE@ -I$(ACE_BUILDDIR) \
|
||||
@BUILD_QOS_TRUE@ -DACE_QoS_BUILD_DLL
|
||||
|
||||
@BUILD_QOS_TRUE@libACE_QoS_la_SOURCES = \
|
||||
@BUILD_QOS_TRUE@ QoS_Decorator.cpp \
|
||||
@BUILD_QOS_TRUE@ QoS_Manager.cpp \
|
||||
@BUILD_QOS_TRUE@ QoS_Session_Factory.cpp \
|
||||
@BUILD_QOS_TRUE@ QoS_Session_Impl.cpp \
|
||||
@BUILD_QOS_TRUE@ SOCK_Dgram_Mcast_QoS.cpp
|
||||
|
||||
@BUILD_QOS_TRUE@libACE_QoS_la_LDFLAGS = \
|
||||
@BUILD_QOS_TRUE@ -release @ACE_VERSION_NAME@
|
||||
|
||||
@BUILD_QOS_TRUE@libACE_QoS_la_LIBADD = \
|
||||
@BUILD_QOS_TRUE@ $(ACE_BUILDDIR)/ace/libACE.la
|
||||
|
||||
@BUILD_QOS_TRUE@nobase_include_HEADERS = \
|
||||
@BUILD_QOS_TRUE@ ACE_QoS_Export.h \
|
||||
@BUILD_QOS_TRUE@ QoS_Decorator.h \
|
||||
@BUILD_QOS_TRUE@ QoS_Manager.h \
|
||||
@BUILD_QOS_TRUE@ QoS_Session.h \
|
||||
@BUILD_QOS_TRUE@ QoS_Session_Factory.h \
|
||||
@BUILD_QOS_TRUE@ QoS_Session_Impl.h \
|
||||
@BUILD_QOS_TRUE@ QoS_Session_Impl.inl \
|
||||
@BUILD_QOS_TRUE@ SOCK_Dgram_Mcast_QoS.h \
|
||||
@BUILD_QOS_TRUE@ SOCK_Dgram_Mcast_QoS.inl
|
||||
|
||||
@BUILD_QOS_TRUE@pkgconfig_DATA = \
|
||||
@BUILD_QOS_TRUE@ ACE_QoS.pc
|
||||
|
||||
@BUILD_QOS_TRUE@CLEANFILES = \
|
||||
@BUILD_QOS_TRUE@ ACE_QoS.pc
|
||||
|
||||
EXTRA_DIST = \
|
||||
ACE_QoS.pc.in
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .cpp .lo .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign ace/QoS/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --foreign ace/QoS/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
|
||||
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
||||
list2=; for p in $$list; do \
|
||||
if test -f $$p; then \
|
||||
list2="$$list2 $$p"; \
|
||||
else :; fi; \
|
||||
done; \
|
||||
test -z "$$list2" || { \
|
||||
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
|
||||
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
|
||||
}
|
||||
|
||||
uninstall-libLTLIBRARIES:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
||||
for p in $$list; do \
|
||||
$(am__strip_dir) \
|
||||
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
|
||||
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
|
||||
done
|
||||
|
||||
clean-libLTLIBRARIES:
|
||||
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
||||
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
||||
test "$$dir" != "$$p" || dir=.; \
|
||||
echo "rm -f \"$${dir}/so_locations\""; \
|
||||
rm -f "$${dir}/so_locations"; \
|
||||
done
|
||||
libACE_QoS.la: $(libACE_QoS_la_OBJECTS) $(libACE_QoS_la_DEPENDENCIES)
|
||||
$(libACE_QoS_la_LINK) $(am_libACE_QoS_la_rpath) $(libACE_QoS_la_OBJECTS) $(libACE_QoS_la_LIBADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_QoS_la-QoS_Decorator.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_QoS_la-QoS_Manager.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_QoS_la-QoS_Session_Factory.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_QoS_la-QoS_Session_Impl.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_QoS_la-SOCK_Dgram_Mcast_QoS.Plo@am__quote@
|
||||
|
||||
.cpp.o:
|
||||
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
|
||||
|
||||
.cpp.obj:
|
||||
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
.cpp.lo:
|
||||
@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $<
|
||||
|
||||
libACE_QoS_la-QoS_Decorator.lo: QoS_Decorator.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_QoS_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_QoS_la-QoS_Decorator.lo -MD -MP -MF $(DEPDIR)/libACE_QoS_la-QoS_Decorator.Tpo -c -o libACE_QoS_la-QoS_Decorator.lo `test -f 'QoS_Decorator.cpp' || echo '$(srcdir)/'`QoS_Decorator.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_QoS_la-QoS_Decorator.Tpo $(DEPDIR)/libACE_QoS_la-QoS_Decorator.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='QoS_Decorator.cpp' object='libACE_QoS_la-QoS_Decorator.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_QoS_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_QoS_la-QoS_Decorator.lo `test -f 'QoS_Decorator.cpp' || echo '$(srcdir)/'`QoS_Decorator.cpp
|
||||
|
||||
libACE_QoS_la-QoS_Manager.lo: QoS_Manager.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_QoS_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_QoS_la-QoS_Manager.lo -MD -MP -MF $(DEPDIR)/libACE_QoS_la-QoS_Manager.Tpo -c -o libACE_QoS_la-QoS_Manager.lo `test -f 'QoS_Manager.cpp' || echo '$(srcdir)/'`QoS_Manager.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_QoS_la-QoS_Manager.Tpo $(DEPDIR)/libACE_QoS_la-QoS_Manager.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='QoS_Manager.cpp' object='libACE_QoS_la-QoS_Manager.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_QoS_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_QoS_la-QoS_Manager.lo `test -f 'QoS_Manager.cpp' || echo '$(srcdir)/'`QoS_Manager.cpp
|
||||
|
||||
libACE_QoS_la-QoS_Session_Factory.lo: QoS_Session_Factory.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_QoS_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_QoS_la-QoS_Session_Factory.lo -MD -MP -MF $(DEPDIR)/libACE_QoS_la-QoS_Session_Factory.Tpo -c -o libACE_QoS_la-QoS_Session_Factory.lo `test -f 'QoS_Session_Factory.cpp' || echo '$(srcdir)/'`QoS_Session_Factory.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_QoS_la-QoS_Session_Factory.Tpo $(DEPDIR)/libACE_QoS_la-QoS_Session_Factory.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='QoS_Session_Factory.cpp' object='libACE_QoS_la-QoS_Session_Factory.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_QoS_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_QoS_la-QoS_Session_Factory.lo `test -f 'QoS_Session_Factory.cpp' || echo '$(srcdir)/'`QoS_Session_Factory.cpp
|
||||
|
||||
libACE_QoS_la-QoS_Session_Impl.lo: QoS_Session_Impl.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_QoS_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_QoS_la-QoS_Session_Impl.lo -MD -MP -MF $(DEPDIR)/libACE_QoS_la-QoS_Session_Impl.Tpo -c -o libACE_QoS_la-QoS_Session_Impl.lo `test -f 'QoS_Session_Impl.cpp' || echo '$(srcdir)/'`QoS_Session_Impl.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_QoS_la-QoS_Session_Impl.Tpo $(DEPDIR)/libACE_QoS_la-QoS_Session_Impl.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='QoS_Session_Impl.cpp' object='libACE_QoS_la-QoS_Session_Impl.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_QoS_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_QoS_la-QoS_Session_Impl.lo `test -f 'QoS_Session_Impl.cpp' || echo '$(srcdir)/'`QoS_Session_Impl.cpp
|
||||
|
||||
libACE_QoS_la-SOCK_Dgram_Mcast_QoS.lo: SOCK_Dgram_Mcast_QoS.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_QoS_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_QoS_la-SOCK_Dgram_Mcast_QoS.lo -MD -MP -MF $(DEPDIR)/libACE_QoS_la-SOCK_Dgram_Mcast_QoS.Tpo -c -o libACE_QoS_la-SOCK_Dgram_Mcast_QoS.lo `test -f 'SOCK_Dgram_Mcast_QoS.cpp' || echo '$(srcdir)/'`SOCK_Dgram_Mcast_QoS.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_QoS_la-SOCK_Dgram_Mcast_QoS.Tpo $(DEPDIR)/libACE_QoS_la-SOCK_Dgram_Mcast_QoS.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SOCK_Dgram_Mcast_QoS.cpp' object='libACE_QoS_la-SOCK_Dgram_Mcast_QoS.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_QoS_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_QoS_la-SOCK_Dgram_Mcast_QoS.lo `test -f 'SOCK_Dgram_Mcast_QoS.cpp' || echo '$(srcdir)/'`SOCK_Dgram_Mcast_QoS.cpp
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
install-pkgconfigDATA: $(pkgconfig_DATA)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
|
||||
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
||||
for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
echo "$$d$$p"; \
|
||||
done | $(am__base_list) | \
|
||||
while read files; do \
|
||||
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
|
||||
$(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
|
||||
done
|
||||
|
||||
uninstall-pkgconfigDATA:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
||||
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
||||
test -n "$$files" || exit 0; \
|
||||
echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
|
||||
cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
|
||||
install-nobase_includeHEADERS: $(nobase_include_HEADERS)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
|
||||
@list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \
|
||||
$(am__nobase_list) | while read dir files; do \
|
||||
xfiles=; for file in $$files; do \
|
||||
if test -f "$$file"; then xfiles="$$xfiles $$file"; \
|
||||
else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
|
||||
test -z "$$xfiles" || { \
|
||||
test "x$$dir" = x. || { \
|
||||
echo "$(MKDIR_P) '$(DESTDIR)$(includedir)/$$dir'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(includedir)/$$dir"; }; \
|
||||
echo " $(INSTALL_HEADER) $$xfiles '$(DESTDIR)$(includedir)/$$dir'"; \
|
||||
$(INSTALL_HEADER) $$xfiles "$(DESTDIR)$(includedir)/$$dir" || exit $$?; }; \
|
||||
done
|
||||
|
||||
uninstall-nobase_includeHEADERS:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \
|
||||
$(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
|
||||
test -n "$$files" || exit 0; \
|
||||
echo " ( cd '$(DESTDIR)$(includedir)' && rm -f" $$files ")"; \
|
||||
cd "$(DESTDIR)$(includedir)" && rm -f $$files
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(includedir)"; do \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
done
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libLTLIBRARIES clean-libtool clean-local \
|
||||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-nobase_includeHEADERS install-pkgconfigDATA
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am: install-libLTLIBRARIES
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-libLTLIBRARIES uninstall-nobase_includeHEADERS \
|
||||
uninstall-pkgconfigDATA
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||||
clean-libLTLIBRARIES clean-libtool clean-local ctags distclean \
|
||||
distclean-compile distclean-generic distclean-libtool \
|
||||
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-dvi \
|
||||
install-dvi-am install-exec install-exec-am install-html \
|
||||
install-html-am install-info install-info-am \
|
||||
install-libLTLIBRARIES install-man \
|
||||
install-nobase_includeHEADERS install-pdf install-pdf-am \
|
||||
install-pkgconfigDATA install-ps install-ps-am install-strip \
|
||||
installcheck installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags uninstall uninstall-am uninstall-libLTLIBRARIES \
|
||||
uninstall-nobase_includeHEADERS uninstall-pkgconfigDATA
|
||||
|
||||
|
||||
@BUILD_QOS_TRUE@ACE_QoS.pc: ${top_builddir}/config.status ${srcdir}/ACE_QoS.pc.in
|
||||
@BUILD_QOS_TRUE@ ${top_builddir}/config.status --file $@:${srcdir}/ACE_QoS.pc.in
|
||||
|
||||
clean-local:
|
||||
-rm -f *~ *.bak *.rpo *.sym lib*.*_pure_* core core.*
|
||||
-rm -f gcctemp.c gcctemp so_locations *.ics
|
||||
-rm -rf cxx_repository ptrepository ti_files
|
||||
-rm -rf templateregistry ir.out
|
||||
-rm -rf ptrepository SunWS_cache Templates.DB
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||
# Visual Studio 2010
|
||||
# $Id: VC10WorkspaceCreator.pm 1890 2010-08-24 19:48:23Z mitza $
|
||||
#
|
||||
# This file was generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
# MPC Command:
|
||||
# /tmp/DOC_ROOT/stage-1367/ACE_wrappers/bin/mwc.pl -type vc10 -recurse -hierarchy -relative ACE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers -relative TAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO -relative CIAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/CIAO -relative DANCE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/DAnCE -name_modifier "*_vc10"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "QoS", "QoS_vc10.vcxproj", "{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
Debug|x64 = Debug|x64
|
||||
Release|Win32 = Release|Win32
|
||||
Release|x64 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}.Debug|x64.Build.0 = Debug|x64
|
||||
{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}.Release|Win32.Build.0 = Release|Win32
|
||||
{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}.Release|x64.ActiveCfg = Release|x64
|
||||
{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}.Release|x64.Build.0 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
|
@ -1,322 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectName>QoS</ProjectName>
|
||||
<ProjectGuid>{6ADC56EC-FECA-1BAD-7781-8A636757A7A3}</ProjectGuid>
|
||||
<RootNamespace>QoS</RootNamespace>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<CharacterSet>NotSet</CharacterSet>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\..\lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug\QoS_vc10\I386\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">ACE_QoSd</TargetName>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release\QoS_vc10\I386\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">ACE_QoS</TargetName>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..\..\lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Debug\QoS_vc10\AMD64\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">ACE_QoSd</TargetName>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..\..\lib\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Release\QoS_vc10\AMD64\</IntDir>
|
||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
|
||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">ACE_QoS</TargetName>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>ACE_QoS_BUILD_DLL;_DEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;ACE_HAS_QOS;ACE_HAS_WINSOCK2_GQOS;MPC_LIB_MODIFIER="d";%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DisableSpecificWarnings>4355;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;ACE_HAS_QOS;ACE_HAS_WINSOCK2_GQOS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>1033</Culture>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>ACEd.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)ACE_QoSd.dll</OutputFile>
|
||||
<AdditionalLibraryDirectories>.;..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ImportLibrary>..\..\lib\ACE_QoSd.lib</ImportLibrary>
|
||||
</Link>
|
||||
<!-- "postclean" was made-up by MPC for use by vs_postclean.pl.
|
||||
Check if msbuild has any support for a custom post-cleaning step
|
||||
-->
|
||||
<!-- No known equivalent for DeploymentTool in vc10:
|
||||
-->
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<TargetEnvironment>Win32</TargetEnvironment>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>ACE_QoS_BUILD_DLL;NDEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;ACE_HAS_QOS;ACE_HAS_WINSOCK2_GQOS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DisableSpecificWarnings>4355;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;ACE_HAS_QOS;ACE_HAS_WINSOCK2_GQOS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>1033</Culture>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>ACE.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)ACE_QoS.dll</OutputFile>
|
||||
<AdditionalLibraryDirectories>.;..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<ImportLibrary>..\..\lib\ACE_QoS.lib</ImportLibrary>
|
||||
</Link>
|
||||
<!-- "postclean" was made-up by MPC for use by vs_postclean.pl.
|
||||
Check if msbuild has any support for a custom post-cleaning step
|
||||
-->
|
||||
<!-- No known equivalent for DeploymentTool in vc10:
|
||||
-->
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<TargetEnvironment>x64</TargetEnvironment>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>ACE_QoS_BUILD_DLL;_DEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_AMD64_;_WIN64;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;ACE_HAS_QOS;ACE_HAS_WINSOCK2_GQOS;MPC_LIB_MODIFIER="d";%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DisableSpecificWarnings>4355;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;ACE_HAS_QOS;ACE_HAS_WINSOCK2_GQOS;_WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>1033</Culture>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>ACEd.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)ACE_QoSd.dll</OutputFile>
|
||||
<AdditionalLibraryDirectories>.;..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<ImportLibrary>..\..\lib\ACE_QoSd.lib</ImportLibrary>
|
||||
<!--
|
||||
Though we can set TargetMachine explicitly, VC++
|
||||
can figure it out by project type. We don't need
|
||||
to set it by ourselves.
|
||||
-->
|
||||
<!-- <TargetMachine>0</TargetMachine>-->
|
||||
<AdditionalOptions>/machine:AMD64 %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
<!-- "postclean" was made-up by MPC for use by vs_postclean.pl.
|
||||
Check if msbuild has any support for a custom post-cleaning step
|
||||
-->
|
||||
<!-- No known equivalent for DeploymentTool in vc10:
|
||||
-->
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<Midl>
|
||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<TargetEnvironment>x64</TargetEnvironment>
|
||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
||||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>ACE_QoS_BUILD_DLL;NDEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_AMD64_;_WIN64;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;ACE_HAS_QOS;ACE_HAS_WINSOCK2_GQOS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<RuntimeTypeInfo>true</RuntimeTypeInfo>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DisableSpecificWarnings>4355;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
</ClCompile>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;ACE_HAS_QOS;ACE_HAS_WINSOCK2_GQOS;_WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<Culture>1033</Culture>
|
||||
<AdditionalIncludeDirectories>..\..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ResourceCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>ACE.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<OutputFile>$(OutDir)ACE_QoS.dll</OutputFile>
|
||||
<AdditionalLibraryDirectories>.;..\..\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<ImportLibrary>..\..\lib\ACE_QoS.lib</ImportLibrary>
|
||||
<!--
|
||||
Though we can set TargetMachine explicitly, VC++
|
||||
can figure it out by project type. We don't need
|
||||
to set it by ourselves.
|
||||
-->
|
||||
<!-- <TargetMachine>0</TargetMachine>-->
|
||||
<AdditionalOptions>/machine:AMD64 %(AdditionalOptions)</AdditionalOptions>
|
||||
</Link>
|
||||
<!-- "postclean" was made-up by MPC for use by vs_postclean.pl.
|
||||
Check if msbuild has any support for a custom post-cleaning step
|
||||
-->
|
||||
<!-- No known equivalent for DeploymentTool in vc10:
|
||||
-->
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="QoS_Decorator.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="QoS_Manager.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="QoS_Session_Factory.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="QoS_Session_Impl.cpp">
|
||||
</ClCompile>
|
||||
<ClCompile Include="SOCK_Dgram_Mcast_QoS.cpp">
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="ACE_QoS_Export.h" />
|
||||
<ClInclude Include="QoS_Decorator.h" />
|
||||
<ClInclude Include="QoS_Manager.h" />
|
||||
<ClInclude Include="QoS_Session.h" />
|
||||
<ClInclude Include="QoS_Session_Factory.h" />
|
||||
<ClInclude Include="QoS_Session_Impl.h" />
|
||||
<ClInclude Include="SOCK_Dgram_Mcast_QoS.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="qos.mpc">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="ACE_QoS.pc.in">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="QoS_Session_Impl.inl" />
|
||||
<None Include="SOCK_Dgram_Mcast_QoS.inl" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="README">
|
||||
<FileType>Document</FileType>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
|
|
@ -1,91 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Source Files">
|
||||
<UniqueIdentifier>{B1F27843-FECA-1BAD-7781-8A636757A7A3}</UniqueIdentifier>
|
||||
<Extensions>cpp;cxx;cc;c;C</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Header Files">
|
||||
<UniqueIdentifier>{06319535-FECA-1BAD-7781-8A636757A7A3}</UniqueIdentifier>
|
||||
<Extensions>h;hpp;hxx;hh</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Build Files">
|
||||
<UniqueIdentifier>{A1909F1C-FECA-1BAD-7781-8A636757A7A3}</UniqueIdentifier>
|
||||
<Extensions>mpc;mpb;mwc</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Pkgconfig Files">
|
||||
<UniqueIdentifier>{8441A3A3-FECA-1BAD-7781-8A636757A7A3}</UniqueIdentifier>
|
||||
<Extensions>pcin</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Inline Files">
|
||||
<UniqueIdentifier>{763028EF-FECA-1BAD-7781-8A636757A7A3}</UniqueIdentifier>
|
||||
<Extensions>i;ipp;inl</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Documentation">
|
||||
<UniqueIdentifier>{B14BBA74-FECA-1BAD-7781-8A636757A7A3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="QoS_Decorator.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="QoS_Manager.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="QoS_Session_Factory.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="QoS_Session_Impl.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="SOCK_Dgram_Mcast_QoS.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="ACE_QoS_Export.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="QoS_Decorator.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="QoS_Manager.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="QoS_Session.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="QoS_Session_Factory.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="QoS_Session_Impl.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="SOCK_Dgram_Mcast_QoS.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="qos.mpc">
|
||||
<Filter>Build Files</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="ACE_QoS.pc.in">
|
||||
<Filter>Pkgconfig Files</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="QoS_Session_Impl.inl">
|
||||
<Filter>Inline Files</Filter>
|
||||
</None>
|
||||
<None Include="SOCK_Dgram_Mcast_QoS.inl">
|
||||
<Filter>Inline Files</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="README">
|
||||
<Filter>Documentation</Filter>
|
||||
</CustomBuild>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
// -*- MPC -*-
|
||||
// $Id: qos.mpc 90826 2010-06-24 09:07:33Z johnnyw $
|
||||
|
||||
project(QoS) : acelib, ace_output, install {
|
||||
requires += qos
|
||||
sharedname = ACE_QoS
|
||||
dynamicflags += ACE_QoS_BUILD_DLL
|
||||
macros += ACE_HAS_QOS
|
||||
|
||||
specific(prop:windows) {
|
||||
macros += ACE_HAS_WINSOCK2_GQOS
|
||||
}
|
||||
|
||||
specific {
|
||||
install_dir = ace/qos
|
||||
}
|
||||
|
||||
pkgconfig_files {
|
||||
ACE_QoS.pc.in
|
||||
}
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libdir=@libdir@
|
||||
includedir=@includedir@
|
||||
|
||||
Name: ACE_QtReactor
|
||||
Description: ACE QtReactor Library
|
||||
Requires: ACE
|
||||
Version: @VERSION@
|
||||
Libs: -L${libdir} -lACE_QtReactor
|
||||
Cflags: -I${includedir}
|
||||
|
|
@ -1,41 +0,0 @@
|
|||
# -*- makefile -*-
|
||||
#----------------------------------------------------------------------------
|
||||
# GNU ACE Workspace
|
||||
#
|
||||
# $Id: GNUACEWorkspaceCreator.pm 91813 2010-09-17 07:52:52Z johnnyw $
|
||||
#
|
||||
# This file was generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
# MPC Command:
|
||||
# /tmp/DOC_ROOT/stage-1367/ACE_wrappers/bin/mwc.pl -type gnuace -exclude "TAO/TAO_*.mwc,TAO/CIAO/CIAO_*.mwc" -recurse -hierarchy -relative ACE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers -relative TAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO -relative CIAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/CIAO -relative DANCE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/DAnCE
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
MAKEFILE = GNUmakefile
|
||||
|
||||
ifeq ($(findstring k,$(MAKEFLAGS)),k)
|
||||
KEEP_GOING = -
|
||||
endif
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/macros.GNU
|
||||
|
||||
all: ACE_Qt3Reactor_moc ACE_Qt3Reactor
|
||||
|
||||
REMAINING_TARGETS := $(filter-out all,$(TARGETS_NESTED:.nested=)) $(CUSTOM_TARGETS)
|
||||
|
||||
$(REMAINING_TARGETS):
|
||||
$(KEEP_GOING)@$(MAKE) -f GNUmakefile.ACE_Qt3Reactor_moc $(@)
|
||||
$(KEEP_GOING)@$(MAKE) -f GNUmakefile.ACE_Qt3Reactor $(@)
|
||||
|
||||
.PHONY: ACE_Qt3Reactor_moc
|
||||
ACE_Qt3Reactor_moc:
|
||||
$(KEEP_GOING)@$(MAKE) -f GNUmakefile.ACE_Qt3Reactor_moc all
|
||||
|
||||
.PHONY: ACE_Qt3Reactor
|
||||
ACE_Qt3Reactor: ACE_Qt3Reactor_moc
|
||||
$(KEEP_GOING)@$(MAKE) -f GNUmakefile.ACE_Qt3Reactor all
|
||||
|
||||
project_name_list:
|
||||
@echo ACE_Qt3Reactor
|
||||
@echo ACE_Qt3Reactor_moc
|
||||
|
|
@ -1,253 +0,0 @@
|
|||
# -*- Makefile -*-
|
||||
#----------------------------------------------------------------------------
|
||||
# GNU Makefile
|
||||
#
|
||||
# @file GNUmakefile.ACE_Qt3Reactor
|
||||
#
|
||||
# $Id: gnu.mpd 91974 2010-09-23 16:17:42Z mitza $
|
||||
#
|
||||
# This file was automatically generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
MAKEFILE = GNUmakefile.ACE_Qt3Reactor
|
||||
DEPENDENCY_FILE = .depend.ACE_Qt3Reactor
|
||||
|
||||
LIB_PREFIX ?= lib
|
||||
|
||||
## LIB_CHECKED may be set to empty later on in this file
|
||||
LIB_UNCHECKED = $(LIB_PREFIX)ACE_QtReactor.$(LIBEXT)
|
||||
LIB_CHECKED = $(LIB_UNCHECKED)
|
||||
LIB_NAME = $(LIB_PREFIX)ACE_QtReactor
|
||||
|
||||
## SHLIB may be set to empty later on in this file
|
||||
SHLIB_UNCHECKED = $(LIB_PREFIX)ACE_QtReactor.$(SOEXT)
|
||||
SHLIB = $(SHLIB_UNCHECKED)
|
||||
|
||||
FILES = \
|
||||
QtReactor_moc.cpp \
|
||||
QtReactor.cpp
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Include macros and targets
|
||||
#----------------------------------------------------------------------------
|
||||
ACE_SHLIBS = -lACE -lqt-mt$(QT_VERSION)
|
||||
|
||||
PRJ_TYPE = library
|
||||
|
||||
COLLAPSE_SLASHES = $(if $(findstring //,$(1)),$(call COLLAPSE_SLASHES,$(subst //,/,$(1))),$(1))
|
||||
INSLIB ?= $(call COLLAPSE_SLASHES,../../lib)
|
||||
ifeq ($(INSLIB),.)
|
||||
ifeq ($(CURDIR),)
|
||||
ifeq ($(PWD),)
|
||||
PWD=$(shell pwd)
|
||||
endif
|
||||
else
|
||||
PWD=$(CURDIR)
|
||||
endif
|
||||
INSLIB = $(PWD)
|
||||
endif
|
||||
OUTPUT_DIRECTORY = $(INSLIB)
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
|
||||
|
||||
|
||||
GNUACE_PROJECT_VERSION ?= $(ACE_VERSION)
|
||||
|
||||
# To build multiple targets in the same directory on AIX, it works
|
||||
# best to have a template directory per project.
|
||||
# The compiler/linker isn't too smart about instantiating templates...
|
||||
ifdef TEMPINCDIR
|
||||
TEMPINCDIR := $(TEMPINCDIR)/ACE_Qt3Reactor
|
||||
all: $(TEMPINCDIR)
|
||||
endif
|
||||
|
||||
ifneq ($(OUTPUT_DIRECTORY),)
|
||||
.PHONY: create_output_directory.local
|
||||
all: create_output_directory.local
|
||||
create_output_directory.local:
|
||||
-@$(MKDIR) "$(OUTPUT_DIRECTORY)" $(ACE_NUL_STDERR)
|
||||
endif
|
||||
|
||||
# turn off libcheck if doing a dry run
|
||||
ifeq ($(findstring n, $(MAKEFLAGS)),n)
|
||||
LIBCHECK = 1
|
||||
else
|
||||
# turn off libcheck if keep going was passed too
|
||||
ifeq ($(findstring k, $(MAKEFLAGS)),k)
|
||||
LIBCHECK = 1
|
||||
else
|
||||
LIBCHECK ?= $(filter-out $(foreach lib,ACE,$(findstring $(lib),$(foreach libpath,. $(if $(ARCH),./$(ARCH)) ../../lib $(if $(ARCH),../../lib/$(ARCH)) $(QTDIR)/lib $(if $(ARCH),$(QTDIR)/lib/$(ARCH)) $(QTDIR)/lib64 $(if $(ARCH),$(QTDIR)/lib64/$(ARCH)) /usr/lib /usr/lib64 $(INSLIB),$(wildcard $(libpath)/$(LIB_PREFIX)$(lib).* $(libpath)/$(lib).lib)))),ACE)
|
||||
ifeq ($(LIBCHECK),)
|
||||
LIBCHECK = 1
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(qt),1)
|
||||
ifneq ($(LIBCHECK), 1)
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: lib_warning
|
||||
endif
|
||||
else
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: require_warning
|
||||
endif
|
||||
|
||||
ifeq ($(qt),1)
|
||||
else
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: require_warning
|
||||
endif
|
||||
LSRC = $(FILES)
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/macros.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.lib.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
|
||||
ifeq ($(VXWORKSLINK),1)
|
||||
include $(TGT_DIR)/h/make/rules.$(PRJ_TYPE)
|
||||
endif
|
||||
|
||||
ifeq ($(VXWORKSLINK),1)
|
||||
LDLIBPATH = -L. -L../../lib -L$(QTDIR)/lib -L$(QTDIR)/lib64
|
||||
else
|
||||
LDFLAGS += -L. $(if $(ARCH),-L./$(ARCH)) -L../../lib $(if $(ARCH),-L../../lib/$(ARCH)) -L$(QTDIR)/lib $(if $(ARCH),-L$(QTDIR)/lib/$(ARCH)) -L$(QTDIR)/lib64 $(if $(ARCH),-L$(QTDIR)/lib64/$(ARCH))
|
||||
endif
|
||||
CPPFLAGS += -I../.. -I$(QTDIR)/include -I/usr/include/qt3
|
||||
CPPFLAGS += -DQT_THREAD_SUPPORT
|
||||
ifeq ($(shared_libs),1)
|
||||
ifneq ($(SHLIB),)
|
||||
CPPFLAGS += -DACE_QTREACTOR_BUILD_DLL
|
||||
endif
|
||||
endif
|
||||
ifeq ($(static_libs),1)
|
||||
CPPFLAGS += -DACE_AS_STATIC_LIBS
|
||||
endif
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Local targets
|
||||
#----------------------------------------------------------------------------
|
||||
CPPFLAGS += $(PLATFORM_QT_CPPFLAGS)
|
||||
LIBS += $(PLATFORM_QT_LIBS)
|
||||
LDFLAGS += $(PLATFORM_QT_LDFLAGS)
|
||||
|
||||
lib_warning:
|
||||
@echo ACE_Qt3Reactor will not be built due to the following missing library: $(LIBCHECK) >&2
|
||||
|
||||
ifneq ($(qt),1)
|
||||
requires_disabled_macros += qt
|
||||
endif
|
||||
require_warning:
|
||||
@echo ACE_Qt3Reactor will not be built due to the following disabled make macros: $(requires_disabled_macros)>&2
|
||||
|
||||
## Some OS's have /bin/test others only have /usr/bin/test
|
||||
ifeq ($(wildcard /bin/test), /bin/test)
|
||||
TEST_EXE = /bin/test
|
||||
else
|
||||
ifeq ($(wildcard /usr/bin/test), /usr/bin/test)
|
||||
TEST_EXE = /usr/bin/test
|
||||
endif
|
||||
endif
|
||||
|
||||
SPACE = $(should_be_unset) $(should_be_unset)
|
||||
ifneq ($(GENERATED_DIRTY),)
|
||||
.PRECIOUS: $(GENERATED_DIRTY)
|
||||
## If the generated files are anything but source files, we need to
|
||||
## ensure that those files are generated before we attempt to build anything
|
||||
## else.
|
||||
ifeq ($(OBJS_DEPEND_ON_GENERATED),1)
|
||||
$(VDIR)$(ACE_PCH_FILE) $(addprefix $(VDIR), $(OBJS)): $(GENERATED_DIRTY)
|
||||
$(VSHDIR)$(ACE_PCH_FILE) $(VSHOBJS): $(GENERATED_DIRTY)
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
realclean: clean
|
||||
ifneq ($(GENERATED_DIRTY),)
|
||||
-$(RM) -r $(GENERATED_DIRTY)
|
||||
endif
|
||||
|
||||
__prebuild__:
|
||||
ifeq ($(qt),1)
|
||||
@-:
|
||||
endif
|
||||
|
||||
|
||||
.PHONY: install
|
||||
install: all
|
||||
INSTALL_LIB ?= lib
|
||||
ifneq ($(INSTALL_PREFIX),)
|
||||
ifneq ($(install_rpath),0)
|
||||
LDFLAGS += -Wl,-R$(INSTALL_PREFIX)/$(INSTALL_LIB)
|
||||
endif
|
||||
endif
|
||||
|
||||
PRJINST_OPTIONS ?=
|
||||
INST_DIR ?= /ace/QtReactor
|
||||
COMMA = ,
|
||||
SPACE = $(should_be_unset) $(should_be_unset)
|
||||
INSTALLER ?= $(MPC_ROOT)/prj_install.pl
|
||||
CUSTOM_INST_TAGS = $(sort )
|
||||
|
||||
LIB_INST_TAGS = header_files template_files$(if $(findstring 1,$(inline)), inline_files)$(if $(CUSTOM_INST_TAGS), $(CUSTOM_INST_TAGS))
|
||||
LIB_INST_LOCATIONS = $(foreach tag,$(LIB_INST_TAGS),-b $(tag)=include$(INST_DIR))
|
||||
|
||||
INST_TAGS = lib_output$(if $(LIB_INST_TAGS), $(LIB_INST_TAGS))
|
||||
INST_LOCATIONS = $(LIB_INST_LOCATIONS) -o lib_output=$(INSTALL_LIB)
|
||||
|
||||
DATA_INST_TAGS =
|
||||
INST_LOCATIONS += $(if $(DATA_INST_TAGS),-x installdata_files -b installdata_files=share$(INST_DIR))
|
||||
INST_TAGS := $(INST_TAGS)$(if $(DATA_INST_TAGS), $(DATA_INST_TAGS))
|
||||
|
||||
ifeq ($(INSTALLER),/prj_install.pl)
|
||||
INSTALLER = $(ACE_ROOT)/MPC/prj_install.pl
|
||||
endif
|
||||
|
||||
ifeq ($(LIBCHECK),1)
|
||||
ifeq ($(qt),1)
|
||||
install:
|
||||
ifeq ($(INST_TAGS),)
|
||||
@echo Nothing to install.
|
||||
else
|
||||
ifeq ($(INSTALL_PREFIX),)
|
||||
@echo The variable INSTALL_PREFIX must be set to install.
|
||||
@echo If binaries are already built and you want to use RPATH,
|
||||
@echo they must be rebuilt after changing INSTALL_PREFIX.
|
||||
@false
|
||||
else
|
||||
perl -ne'if (/^#END MPC-Generated Install Info/) {exit 0}' \
|
||||
-e'elsif (/^#BEGIN MPC-Generated Install Info/) {$$ok=1}' \
|
||||
-e'elsif ($$ok && s/^#//) {print}' $(MAKEFILE) | \
|
||||
$(INSTALLER) -i -s $(subst $(SPACE),$(COMMA),$(INST_TAGS)) \
|
||||
$(INST_LOCATIONS) $(if $(ARCH),-d $(ARCH)) $(PRJINST_OPTIONS) \
|
||||
$(INSTALL_PREFIX)
|
||||
$(ACE_ROOT)/bin/ace_install_pkgconfig.pl ACE_QtReactor.pc.in --prefix $(INSTALL_PREFIX) --libdir $(INSTALL_LIB) --libs "$(LIBS)" --version $(GNUACE_PROJECT_VERSION)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
#BEGIN MPC-Generated Install Info
|
||||
#build_files:
|
||||
#ace_qt4reactor.mpc
|
||||
#ace_qt3reactor.mpc
|
||||
#
|
||||
#header_files:
|
||||
#QtReactor.h
|
||||
#
|
||||
#pkgconfig_files:
|
||||
#ACE_QtReactor.pc.in
|
||||
#
|
||||
#source_files:
|
||||
#QtReactor_moc.cpp
|
||||
#QtReactor.cpp
|
||||
#
|
||||
#lib_output:
|
||||
#../../lib ACE_QtReactor
|
||||
|
||||
#END MPC-Generated Install Info
|
||||
|
||||
|
|
@ -1,152 +0,0 @@
|
|||
# -*- Makefile -*-
|
||||
#----------------------------------------------------------------------------
|
||||
# GNU Makefile
|
||||
#
|
||||
# @file GNUmakefile.ACE_Qt3Reactor_moc
|
||||
#
|
||||
# $Id: gnu.mpd 91974 2010-09-23 16:17:42Z mitza $
|
||||
#
|
||||
# This file was automatically generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
MAKEFILE = GNUmakefile.ACE_Qt3Reactor_moc
|
||||
DEPENDENCY_FILE = .depend.ACE_Qt3Reactor_moc
|
||||
|
||||
LIB_PREFIX ?= lib
|
||||
|
||||
FILES = \
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Include macros and targets
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
PRJ_TYPE = library
|
||||
|
||||
COLLAPSE_SLASHES = $(if $(findstring //,$(1)),$(call COLLAPSE_SLASHES,$(subst //,/,$(1))),$(1))
|
||||
INSLIB ?= $(call COLLAPSE_SLASHES,.)
|
||||
ifeq ($(INSLIB),.)
|
||||
ifeq ($(CURDIR),)
|
||||
ifeq ($(PWD),)
|
||||
PWD=$(shell pwd)
|
||||
endif
|
||||
else
|
||||
PWD=$(CURDIR)
|
||||
endif
|
||||
INSLIB = $(PWD)
|
||||
endif
|
||||
OUTPUT_DIRECTORY = $(INSLIB)
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
|
||||
|
||||
|
||||
GNUACE_PROJECT_VERSION ?= $(ACE_VERSION)
|
||||
|
||||
# To build multiple targets in the same directory on AIX, it works
|
||||
# best to have a template directory per project.
|
||||
# The compiler/linker isn't too smart about instantiating templates...
|
||||
ifdef TEMPINCDIR
|
||||
TEMPINCDIR := $(TEMPINCDIR)/ACE_Qt3Reactor_moc
|
||||
all: $(TEMPINCDIR)
|
||||
endif
|
||||
|
||||
ifneq ($(OUTPUT_DIRECTORY),)
|
||||
.PHONY: create_output_directory.local
|
||||
all: create_output_directory.local
|
||||
create_output_directory.local:
|
||||
-@$(MKDIR) "$(OUTPUT_DIRECTORY)" $(ACE_NUL_STDERR)
|
||||
endif
|
||||
|
||||
LIBCHECK = 1
|
||||
ifeq ($(qt),1)
|
||||
ifneq ($(LIBCHECK), 1)
|
||||
all: lib_warning
|
||||
endif
|
||||
else
|
||||
all: require_warning
|
||||
endif
|
||||
|
||||
ifeq ($(qt),1)
|
||||
else
|
||||
all: require_warning
|
||||
endif
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/macros.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
|
||||
ifeq ($(VXWORKSLINK),1)
|
||||
include $(TGT_DIR)/h/make/rules.$(PRJ_TYPE)
|
||||
endif
|
||||
|
||||
ifeq ($(VXWORKSLINK),1)
|
||||
LDLIBPATH = -L. -L../../lib -L$(QTDIR)/lib -L$(QTDIR)/lib64
|
||||
else
|
||||
LDFLAGS += -L. $(if $(ARCH),-L./$(ARCH)) -L../../lib $(if $(ARCH),-L../../lib/$(ARCH)) -L$(QTDIR)/lib $(if $(ARCH),-L$(QTDIR)/lib/$(ARCH)) -L$(QTDIR)/lib64 $(if $(ARCH),-L$(QTDIR)/lib64/$(ARCH))
|
||||
endif
|
||||
CPPFLAGS += -I../.. -I$(QTDIR)/include -I/usr/include/qt3
|
||||
CPPFLAGS += -DQT_THREAD_SUPPORT
|
||||
ifeq ($(static_libs),1)
|
||||
CPPFLAGS += -DACE_AS_STATIC_LIBS
|
||||
endif
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Local targets
|
||||
#----------------------------------------------------------------------------
|
||||
CPPFLAGS += $(PLATFORM_QT_CPPFLAGS)
|
||||
LIBS += $(PLATFORM_QT_LIBS)
|
||||
LDFLAGS += $(PLATFORM_QT_LDFLAGS)
|
||||
|
||||
lib_warning:
|
||||
@echo ACE_Qt3Reactor_moc will not be built due to the following missing library: $(LIBCHECK) >&2
|
||||
|
||||
ifneq ($(qt),1)
|
||||
requires_disabled_macros += qt
|
||||
endif
|
||||
require_warning:
|
||||
@echo ACE_Qt3Reactor_moc will not be built due to the following disabled make macros: $(requires_disabled_macros)>&2
|
||||
|
||||
## Some OS's have /bin/test others only have /usr/bin/test
|
||||
ifeq ($(wildcard /bin/test), /bin/test)
|
||||
TEST_EXE = /bin/test
|
||||
else
|
||||
ifeq ($(wildcard /usr/bin/test), /usr/bin/test)
|
||||
TEST_EXE = /usr/bin/test
|
||||
endif
|
||||
endif
|
||||
|
||||
SPACE = $(should_be_unset) $(should_be_unset)
|
||||
GENERATED_DIRTY += QtReactor_moc.cpp
|
||||
QtReactor_moc.cpp: QtReactor.h
|
||||
$(if $(findstring ",$(QTDIR)/bin/moc),$(QTDIR)/bin/moc,$(call ADD_QUOTE,$(call ADD_ARCH,$(QTDIR)/bin/moc))) QtReactor.h -o $@
|
||||
|
||||
|
||||
ifneq ($(GENERATED_DIRTY),)
|
||||
.PRECIOUS: $(GENERATED_DIRTY)
|
||||
ifeq ($(qt),1)
|
||||
all: $(GENERATED_DIRTY)
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
realclean: clean
|
||||
ifneq ($(GENERATED_DIRTY),)
|
||||
-$(RM) -r $(GENERATED_DIRTY)
|
||||
endif
|
||||
|
||||
__prebuild__:
|
||||
ifeq ($(qt),1)
|
||||
@-:
|
||||
endif
|
||||
|
||||
|
||||
.PHONY: install
|
||||
install: all
|
||||
INSTALL_LIB ?= lib
|
||||
ifneq ($(INSTALL_PREFIX),)
|
||||
ifneq ($(install_rpath),0)
|
||||
LDFLAGS += -Wl,-R$(INSTALL_PREFIX)/$(INSTALL_LIB)
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
// -*- MPC -*- now wouldn't this be cool...
|
||||
// $Id: ace_qt3reactor.mpc 91839 2010-09-17 20:16:53Z mitza $
|
||||
|
||||
project(ACE_Qt3Reactor_moc) : acedefaults, ace_qt3 {
|
||||
custom_only = 1
|
||||
MOC_Files {
|
||||
QtReactor.h
|
||||
}
|
||||
}
|
||||
|
||||
project(ACE_Qt3Reactor) : acedefaults, install, acelib, ace_output, ace_qt3 {
|
||||
after += ACE_Qt3Reactor_moc
|
||||
sharedname = ACE_QtReactor
|
||||
dynamicflags += ACE_QTREACTOR_BUILD_DLL
|
||||
|
||||
MOC_Files {
|
||||
}
|
||||
|
||||
Source_Files {
|
||||
QtReactor_moc.cpp
|
||||
QtReactor.cpp
|
||||
}
|
||||
|
||||
specific {
|
||||
install_dir = ace/QtReactor
|
||||
}
|
||||
}
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
// -*- MPC -*- now wouldn't this be cool...
|
||||
// $Id: ace_qt4reactor.mpc 91839 2010-09-17 20:16:53Z mitza $
|
||||
|
||||
project(ACE_Qt4Reactor_moc) : acedefaults, ace_qt4 {
|
||||
custom_only = 1
|
||||
MOC_Files {
|
||||
QtReactor.h
|
||||
}
|
||||
}
|
||||
|
||||
project(ACE_Qt4Reactor) : acedefaults, install, acelib, ace_output, ace_qt4 {
|
||||
after += ACE_Qt4Reactor_moc
|
||||
sharedname = ACE_QtReactor
|
||||
dynamicflags += ACE_QTREACTOR_BUILD_DLL
|
||||
|
||||
MOC_Files {
|
||||
}
|
||||
|
||||
Source_Files {
|
||||
QtReactor_moc.cpp
|
||||
QtReactor.cpp
|
||||
}
|
||||
|
||||
specific {
|
||||
install_dir = ace/QtReactor
|
||||
}
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libdir=@libdir@
|
||||
includedir=@includedir@
|
||||
|
||||
Name: ACE_SSL
|
||||
Description: ACE SSL Library
|
||||
Requires: ACE
|
||||
Version: @VERSION@
|
||||
Libs: -L${libdir} @ACE_TLS_LDFLAGS@ -lACE_SSL @ACE_TLS_LIBS@
|
||||
Cflags: -I${includedir} @ACE_TLS_CPPFLAGS@
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
# -*- makefile -*-
|
||||
#----------------------------------------------------------------------------
|
||||
# GNU ACE Workspace
|
||||
#
|
||||
# $Id: GNUACEWorkspaceCreator.pm 91813 2010-09-17 07:52:52Z johnnyw $
|
||||
#
|
||||
# This file was generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
# MPC Command:
|
||||
# /tmp/DOC_ROOT/stage-1367/ACE_wrappers/bin/mwc.pl -type gnuace -exclude "TAO/TAO_*.mwc,TAO/CIAO/CIAO_*.mwc" -recurse -hierarchy -relative ACE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers -relative TAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO -relative CIAO_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/CIAO -relative DANCE_ROOT=/tmp/DOC_ROOT/stage-1367/ACE_wrappers/TAO/DAnCE
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
MAKEFILE = GNUmakefile
|
||||
|
||||
ifeq ($(findstring k,$(MAKEFLAGS)),k)
|
||||
KEEP_GOING = -
|
||||
endif
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/macros.GNU
|
||||
|
||||
all: SSL
|
||||
|
||||
REMAINING_TARGETS := $(filter-out all,$(TARGETS_NESTED:.nested=)) $(CUSTOM_TARGETS)
|
||||
|
||||
$(REMAINING_TARGETS):
|
||||
$(KEEP_GOING)@$(MAKE) -f GNUmakefile.SSL $(@)
|
||||
|
||||
.PHONY: SSL
|
||||
SSL:
|
||||
$(KEEP_GOING)@$(MAKE) -f GNUmakefile.SSL all
|
||||
|
||||
project_name_list:
|
||||
@echo SSL
|
||||
|
|
@ -1,297 +0,0 @@
|
|||
# -*- Makefile -*-
|
||||
#----------------------------------------------------------------------------
|
||||
# GNU Makefile
|
||||
#
|
||||
# @file GNUmakefile.SSL
|
||||
#
|
||||
# $Id: gnu.mpd 91974 2010-09-23 16:17:42Z mitza $
|
||||
#
|
||||
# This file was automatically generated by MPC. Any changes made directly to
|
||||
# this file will be lost the next time it is generated.
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
MAKEFILE = GNUmakefile.SSL
|
||||
DEPENDENCY_FILE = .depend.SSL
|
||||
|
||||
LIB_PREFIX ?= lib
|
||||
|
||||
## LIB_CHECKED may be set to empty later on in this file
|
||||
LIB_UNCHECKED = $(LIB_PREFIX)ACE_SSL.$(LIBEXT)
|
||||
LIB_CHECKED = $(LIB_UNCHECKED)
|
||||
LIB_NAME = $(LIB_PREFIX)ACE_SSL
|
||||
|
||||
## SHLIB may be set to empty later on in this file
|
||||
SHLIB_UNCHECKED = $(LIB_PREFIX)ACE_SSL.$(SOEXT)
|
||||
SHLIB = $(SHLIB_UNCHECKED)
|
||||
|
||||
FILES = \
|
||||
SSL_SOCK.cpp \
|
||||
SSL_SOCK_Stream.cpp \
|
||||
SSL_SOCK_Connector.cpp \
|
||||
SSL_Asynch_Stream.cpp \
|
||||
SSL_SOCK_Acceptor.cpp \
|
||||
SSL_Context.cpp \
|
||||
SSL_Asynch_BIO.cpp
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Include macros and targets
|
||||
#----------------------------------------------------------------------------
|
||||
ACE_SHLIBS = -lACE $(PLATFORM_SSL_LIBS)
|
||||
|
||||
PRJ_TYPE = library
|
||||
|
||||
COLLAPSE_SLASHES = $(if $(findstring //,$(1)),$(call COLLAPSE_SLASHES,$(subst //,/,$(1))),$(1))
|
||||
INSLIB ?= $(call COLLAPSE_SLASHES,../../lib)
|
||||
ifeq ($(INSLIB),.)
|
||||
ifeq ($(CURDIR),)
|
||||
ifeq ($(PWD),)
|
||||
PWD=$(shell pwd)
|
||||
endif
|
||||
else
|
||||
PWD=$(CURDIR)
|
||||
endif
|
||||
INSLIB = $(PWD)
|
||||
endif
|
||||
OUTPUT_DIRECTORY = $(INSLIB)
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
|
||||
|
||||
|
||||
GNUACE_PROJECT_VERSION ?= $(ACE_VERSION)
|
||||
|
||||
# To build multiple targets in the same directory on AIX, it works
|
||||
# best to have a template directory per project.
|
||||
# The compiler/linker isn't too smart about instantiating templates...
|
||||
ifdef TEMPINCDIR
|
||||
TEMPINCDIR := $(TEMPINCDIR)/SSL
|
||||
all: $(TEMPINCDIR)
|
||||
endif
|
||||
|
||||
ifneq ($(OUTPUT_DIRECTORY),)
|
||||
.PHONY: create_output_directory.local
|
||||
all: create_output_directory.local
|
||||
create_output_directory.local:
|
||||
-@$(MKDIR) "$(OUTPUT_DIRECTORY)" $(ACE_NUL_STDERR)
|
||||
endif
|
||||
|
||||
# turn off libcheck if doing a dry run
|
||||
ifeq ($(findstring n, $(MAKEFLAGS)),n)
|
||||
LIBCHECK = 1
|
||||
else
|
||||
# turn off libcheck if keep going was passed too
|
||||
ifeq ($(findstring k, $(MAKEFLAGS)),k)
|
||||
LIBCHECK = 1
|
||||
else
|
||||
LIBCHECK ?= $(filter-out $(foreach lib,ACE,$(findstring $(lib),$(foreach libpath,. $(if $(ARCH),./$(ARCH)) ../../lib $(if $(ARCH),../../lib/$(ARCH)) /usr/lib /usr/lib64 $(INSLIB),$(wildcard $(libpath)/$(LIB_PREFIX)$(lib).* $(libpath)/$(lib).lib)))),ACE)
|
||||
ifeq ($(LIBCHECK),)
|
||||
LIBCHECK = 1
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(ssl),1)
|
||||
ifneq ($(ace_for_tao),1)
|
||||
ifneq ($(LIBCHECK), 1)
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: lib_warning
|
||||
endif
|
||||
else
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: avoid_warning
|
||||
endif
|
||||
else
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: require_warning
|
||||
endif
|
||||
|
||||
ifeq ($(ssl),1)
|
||||
ifneq ($(ace_for_tao),1)
|
||||
else
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: avoid_warning
|
||||
endif
|
||||
else
|
||||
LIB_CHECKED =
|
||||
SHLIB =
|
||||
all: require_warning
|
||||
endif
|
||||
LSRC = $(FILES)
|
||||
|
||||
include $(ACE_ROOT)/include/makeinclude/macros.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.lib.GNU
|
||||
include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
|
||||
ifeq ($(VXWORKSLINK),1)
|
||||
include $(TGT_DIR)/h/make/rules.$(PRJ_TYPE)
|
||||
endif
|
||||
|
||||
ifeq ($(VXWORKSLINK),1)
|
||||
LDLIBPATH = -L. -L../../lib $(PLATFORM_SSL_LDFLAGS)
|
||||
else
|
||||
LDFLAGS += -L. $(if $(ARCH),-L./$(ARCH)) -L../../lib $(if $(ARCH),-L../../lib/$(ARCH)) $(PLATFORM_SSL_LDFLAGS)
|
||||
endif
|
||||
CPPFLAGS += -I../..
|
||||
CPPFLAGS += $(PLATFORM_SSL_CPPFLAGS)
|
||||
ifeq ($(shared_libs),1)
|
||||
ifneq ($(SHLIB),)
|
||||
CPPFLAGS += -DACE_SSL_BUILD_DLL
|
||||
endif
|
||||
endif
|
||||
ifeq ($(static_libs),1)
|
||||
CPPFLAGS += -DACE_AS_STATIC_LIBS
|
||||
endif
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Local targets
|
||||
#----------------------------------------------------------------------------
|
||||
lib_warning:
|
||||
@echo SSL will not be built due to the following missing library: $(LIBCHECK) >&2
|
||||
|
||||
ifneq ($(ssl),1)
|
||||
requires_disabled_macros += ssl
|
||||
endif
|
||||
require_warning:
|
||||
@echo SSL will not be built due to the following disabled make macros: $(requires_disabled_macros)>&2
|
||||
|
||||
ifeq ($(ace_for_tao),1)
|
||||
avoids_enabled_macros += ace_for_tao
|
||||
endif
|
||||
avoid_warning:
|
||||
@echo SSL will not be built due to the following enabled make macros: $(avoids_enabled_macros)>&2
|
||||
|
||||
## Some OS's have /bin/test others only have /usr/bin/test
|
||||
ifeq ($(wildcard /bin/test), /bin/test)
|
||||
TEST_EXE = /bin/test
|
||||
else
|
||||
ifeq ($(wildcard /usr/bin/test), /usr/bin/test)
|
||||
TEST_EXE = /usr/bin/test
|
||||
endif
|
||||
endif
|
||||
|
||||
SPACE = $(should_be_unset) $(should_be_unset)
|
||||
ifneq ($(GENERATED_DIRTY),)
|
||||
.PRECIOUS: $(GENERATED_DIRTY)
|
||||
## If the generated files are anything but source files, we need to
|
||||
## ensure that those files are generated before we attempt to build anything
|
||||
## else.
|
||||
ifeq ($(OBJS_DEPEND_ON_GENERATED),1)
|
||||
$(VDIR)$(ACE_PCH_FILE) $(addprefix $(VDIR), $(OBJS)): $(GENERATED_DIRTY)
|
||||
$(VSHDIR)$(ACE_PCH_FILE) $(VSHOBJS): $(GENERATED_DIRTY)
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
realclean: clean
|
||||
ifneq ($(GENERATED_DIRTY),)
|
||||
-$(RM) -r $(GENERATED_DIRTY)
|
||||
endif
|
||||
|
||||
__prebuild__:
|
||||
ifeq ($(ssl),1)
|
||||
ifneq ($(ace_for_tao),1)
|
||||
@-:
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
.PHONY: install
|
||||
install: all
|
||||
INSTALL_LIB ?= lib
|
||||
ifneq ($(INSTALL_PREFIX),)
|
||||
ifneq ($(install_rpath),0)
|
||||
LDFLAGS += -Wl,-R$(INSTALL_PREFIX)/$(INSTALL_LIB)
|
||||
endif
|
||||
endif
|
||||
|
||||
PRJINST_OPTIONS ?=
|
||||
INST_DIR ?= /ace/SSL
|
||||
COMMA = ,
|
||||
SPACE = $(should_be_unset) $(should_be_unset)
|
||||
INSTALLER ?= $(MPC_ROOT)/prj_install.pl
|
||||
CUSTOM_INST_TAGS = $(sort )
|
||||
|
||||
LIB_INST_TAGS = header_files template_files$(if $(findstring 1,$(inline)), inline_files)$(if $(CUSTOM_INST_TAGS), $(CUSTOM_INST_TAGS))
|
||||
LIB_INST_LOCATIONS = $(foreach tag,$(LIB_INST_TAGS),-b $(tag)=include$(INST_DIR))
|
||||
|
||||
INST_TAGS = lib_output$(if $(LIB_INST_TAGS), $(LIB_INST_TAGS))
|
||||
INST_LOCATIONS = $(LIB_INST_LOCATIONS) -o lib_output=$(INSTALL_LIB)
|
||||
|
||||
DATA_INST_TAGS =
|
||||
INST_LOCATIONS += $(if $(DATA_INST_TAGS),-x installdata_files -b installdata_files=share$(INST_DIR))
|
||||
INST_TAGS := $(INST_TAGS)$(if $(DATA_INST_TAGS), $(DATA_INST_TAGS))
|
||||
|
||||
ifeq ($(INSTALLER),/prj_install.pl)
|
||||
INSTALLER = $(ACE_ROOT)/MPC/prj_install.pl
|
||||
endif
|
||||
|
||||
ifeq ($(LIBCHECK),1)
|
||||
ifeq ($(ssl),1)
|
||||
ifneq ($(ace_for_tao),1)
|
||||
install:
|
||||
ifeq ($(INST_TAGS),)
|
||||
@echo Nothing to install.
|
||||
else
|
||||
ifeq ($(INSTALL_PREFIX),)
|
||||
@echo The variable INSTALL_PREFIX must be set to install.
|
||||
@echo If binaries are already built and you want to use RPATH,
|
||||
@echo they must be rebuilt after changing INSTALL_PREFIX.
|
||||
@false
|
||||
else
|
||||
perl -ne'if (/^#END MPC-Generated Install Info/) {exit 0}' \
|
||||
-e'elsif (/^#BEGIN MPC-Generated Install Info/) {$$ok=1}' \
|
||||
-e'elsif ($$ok && s/^#//) {print}' $(MAKEFILE) | \
|
||||
$(INSTALLER) -i -s $(subst $(SPACE),$(COMMA),$(INST_TAGS)) \
|
||||
$(INST_LOCATIONS) $(if $(ARCH),-d $(ARCH)) $(PRJINST_OPTIONS) \
|
||||
$(INSTALL_PREFIX)
|
||||
$(ACE_ROOT)/bin/ace_install_pkgconfig.pl ACE_SSL.pc.in --prefix $(INSTALL_PREFIX) --libdir $(INSTALL_LIB) --libs "$(LIBS)" --version $(GNUACE_PROJECT_VERSION) --custom "ACE_TLS_CPPFLAGS=$(PLATFORM_SSL_CPPFLAGS)" --custom "ACE_TLS_LDFLAGS=$(PLATFORM_SSL_LDFLAGS)" --custom "ACE_TLS_LIBS=$(PLATFORM_SSL_LIBS)"
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
#BEGIN MPC-Generated Install Info
|
||||
#build_files:
|
||||
#ssl.mpc
|
||||
#ssl_for_tao.mpc
|
||||
#
|
||||
#inline_files:
|
||||
#SSL_Asynch_Stream.inl
|
||||
#SSL_SOCK.inl
|
||||
#SSL_SOCK_Connector.inl
|
||||
#SSL_SOCK_Acceptor.inl
|
||||
#SSL_Context.inl
|
||||
#SSL_SOCK_Stream.inl
|
||||
#
|
||||
#header_files:
|
||||
#SSL_Asynch_Stream.h
|
||||
#SSL_SOCK.h
|
||||
#SSL_SOCK_Connector.h
|
||||
#SSL_SOCK_Acceptor.h
|
||||
#SSL_Asynch_BIO.h
|
||||
#SSL_Context.h
|
||||
#SSL_SOCK_Stream.h
|
||||
#SSL_Export.h
|
||||
#sslconf.h
|
||||
#
|
||||
#pkgconfig_files:
|
||||
#ACE_SSL.pc.in
|
||||
#
|
||||
#source_files:
|
||||
#SSL_SOCK.cpp
|
||||
#SSL_SOCK_Stream.cpp
|
||||
#SSL_SOCK_Connector.cpp
|
||||
#SSL_Asynch_Stream.cpp
|
||||
#SSL_SOCK_Acceptor.cpp
|
||||
#SSL_Context.cpp
|
||||
#SSL_Asynch_BIO.cpp
|
||||
#
|
||||
#lib_output:
|
||||
#../../lib ACE_SSL
|
||||
|
||||
#END MPC-Generated Install Info
|
||||
|
||||
|
|
@ -1,86 +0,0 @@
|
|||
## Process this file with automake to create Makefile.in
|
||||
##
|
||||
## $Id: Makefile.am 83916 2008-11-28 16:32:21Z johnnyw $
|
||||
##
|
||||
## This file was generated by MPC. Any changes made directly to
|
||||
## this file will be lost the next time it is generated.
|
||||
##
|
||||
## MPC Command:
|
||||
## ./bin/mwc.pl -type automake -noreldefs ACE.mwc
|
||||
|
||||
includedir = @includedir@/ace/SSL
|
||||
pkgconfigdir = @libdir@/pkgconfig
|
||||
|
||||
ACE_BUILDDIR = $(top_builddir)
|
||||
ACE_ROOT = $(top_srcdir)
|
||||
|
||||
|
||||
## Makefile.SSL.am
|
||||
|
||||
if BUILD_SSL
|
||||
if !BUILD_ACE_FOR_TAO
|
||||
|
||||
lib_LTLIBRARIES = libACE_SSL.la
|
||||
|
||||
libACE_SSL_la_CPPFLAGS = \
|
||||
-I$(ACE_ROOT) \
|
||||
-I$(ACE_BUILDDIR) \
|
||||
@ACE_TLS_CPPFLAGS@ \
|
||||
-DACE_SSL_BUILD_DLL
|
||||
|
||||
libACE_SSL_la_SOURCES = \
|
||||
SSL_Asynch_BIO.cpp \
|
||||
SSL_Asynch_Stream.cpp \
|
||||
SSL_Context.cpp \
|
||||
SSL_SOCK.cpp \
|
||||
SSL_SOCK_Acceptor.cpp \
|
||||
SSL_SOCK_Connector.cpp \
|
||||
SSL_SOCK_Stream.cpp
|
||||
|
||||
libACE_SSL_la_LDFLAGS = \
|
||||
-release @ACE_VERSION_NAME@ @ACE_TLS_LDFLAGS@
|
||||
|
||||
libACE_SSL_la_LIBADD = \
|
||||
$(ACE_BUILDDIR)/ace/libACE.la \
|
||||
@ACE_TLS_LIBS@
|
||||
|
||||
nobase_include_HEADERS = \
|
||||
SSL_Asynch_BIO.h \
|
||||
SSL_Asynch_Stream.h \
|
||||
SSL_Asynch_Stream.inl \
|
||||
SSL_Context.h \
|
||||
SSL_Context.inl \
|
||||
SSL_Export.h \
|
||||
SSL_SOCK.h \
|
||||
SSL_SOCK.inl \
|
||||
SSL_SOCK_Acceptor.h \
|
||||
SSL_SOCK_Acceptor.inl \
|
||||
SSL_SOCK_Connector.h \
|
||||
SSL_SOCK_Connector.inl \
|
||||
SSL_SOCK_Stream.h \
|
||||
SSL_SOCK_Stream.inl \
|
||||
sslconf.h
|
||||
|
||||
pkgconfig_DATA = \
|
||||
ACE_SSL.pc
|
||||
|
||||
CLEANFILES = \
|
||||
ACE_SSL.pc
|
||||
|
||||
ACE_SSL.pc: ${top_builddir}/config.status ${srcdir}/ACE_SSL.pc.in
|
||||
${top_builddir}/config.status --file $@:${srcdir}/ACE_SSL.pc.in
|
||||
|
||||
endif !BUILD_ACE_FOR_TAO
|
||||
endif BUILD_SSL
|
||||
|
||||
EXTRA_DIST = \
|
||||
ACE_SSL.pc.in
|
||||
|
||||
|
||||
## Clean up template repositories, etc.
|
||||
clean-local:
|
||||
-rm -f *~ *.bak *.rpo *.sym lib*.*_pure_* core core.*
|
||||
-rm -f gcctemp.c gcctemp so_locations *.ics
|
||||
-rm -rf cxx_repository ptrepository ti_files
|
||||
-rm -rf templateregistry ir.out
|
||||
-rm -rf ptrepository SunWS_cache Templates.DB
|
||||
|
|
@ -1,783 +0,0 @@
|
|||
# Makefile.in generated by automake 1.11.1 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
|
||||
# Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
|
||||
|
||||
VPATH = @srcdir@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
target_triplet = @target@
|
||||
subdir = ace/SSL
|
||||
DIST_COMMON = $(am__nobase_include_HEADERS_DIST) $(srcdir)/Makefile.am \
|
||||
$(srcdir)/Makefile.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/m4/ace.m4 \
|
||||
$(top_srcdir)/m4/ace_defines.m4 $(top_srcdir)/m4/ace_func.m4 \
|
||||
$(top_srcdir)/m4/ace_functions.m4 \
|
||||
$(top_srcdir)/m4/ace_headers.m4 $(top_srcdir)/m4/acinclude.m4 \
|
||||
$(top_srcdir)/m4/aio.m4 $(top_srcdir)/m4/compiler.m4 \
|
||||
$(top_srcdir)/m4/config_h.m4 $(top_srcdir)/m4/libtool.m4 \
|
||||
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
|
||||
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
|
||||
$(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/platform.m4 \
|
||||
$(top_srcdir)/m4/subsets.m4 $(top_srcdir)/m4/threads.m4 \
|
||||
$(top_srcdir)/m4/tls.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/ace/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
||||
am__vpath_adj = case $$p in \
|
||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
*) f=$$p;; \
|
||||
esac;
|
||||
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
||||
am__install_max = 40
|
||||
am__nobase_strip_setup = \
|
||||
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
||||
am__nobase_strip = \
|
||||
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
||||
am__nobase_list = $(am__nobase_strip_setup); \
|
||||
for p in $$list; do echo "$$p $$p"; done | \
|
||||
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
||||
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
||||
if (++n[$$2] == $(am__install_max)) \
|
||||
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
||||
END { for (dir in files) print dir, files[dir] }'
|
||||
am__base_list = \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
||||
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
||||
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \
|
||||
"$(DESTDIR)$(includedir)"
|
||||
LTLIBRARIES = $(lib_LTLIBRARIES)
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@libACE_SSL_la_DEPENDENCIES = $(ACE_BUILDDIR)/ace/libACE.la
|
||||
am__libACE_SSL_la_SOURCES_DIST = SSL_Asynch_BIO.cpp \
|
||||
SSL_Asynch_Stream.cpp SSL_Context.cpp SSL_SOCK.cpp \
|
||||
SSL_SOCK_Acceptor.cpp SSL_SOCK_Connector.cpp \
|
||||
SSL_SOCK_Stream.cpp
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@am_libACE_SSL_la_OBJECTS = libACE_SSL_la-SSL_Asynch_BIO.lo \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ libACE_SSL_la-SSL_Asynch_Stream.lo \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ libACE_SSL_la-SSL_Context.lo \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ libACE_SSL_la-SSL_SOCK.lo \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ libACE_SSL_la-SSL_SOCK_Acceptor.lo \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ libACE_SSL_la-SSL_SOCK_Connector.lo \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ libACE_SSL_la-SSL_SOCK_Stream.lo
|
||||
libACE_SSL_la_OBJECTS = $(am_libACE_SSL_la_OBJECTS)
|
||||
libACE_SSL_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
|
||||
$(CXXFLAGS) $(libACE_SSL_la_LDFLAGS) $(LDFLAGS) -o $@
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@am_libACE_SSL_la_rpath = \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ -rpath $(libdir)
|
||||
DEFAULT_INCLUDES =
|
||||
depcomp = $(SHELL) $(top_srcdir)/aux_config/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
CXXLD = $(CXX)
|
||||
CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
||||
--mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
|
||||
$(LDFLAGS) -o $@
|
||||
SOURCES = $(libACE_SSL_la_SOURCES)
|
||||
DIST_SOURCES = $(am__libACE_SSL_la_SOURCES_DIST)
|
||||
DATA = $(pkgconfig_DATA)
|
||||
am__nobase_include_HEADERS_DIST = SSL_Asynch_BIO.h SSL_Asynch_Stream.h \
|
||||
SSL_Asynch_Stream.inl SSL_Context.h SSL_Context.inl \
|
||||
SSL_Export.h SSL_SOCK.h SSL_SOCK.inl SSL_SOCK_Acceptor.h \
|
||||
SSL_SOCK_Acceptor.inl SSL_SOCK_Connector.h \
|
||||
SSL_SOCK_Connector.inl SSL_SOCK_Stream.h SSL_SOCK_Stream.inl \
|
||||
sslconf.h
|
||||
HEADERS = $(nobase_include_HEADERS)
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACEXML = @ACEXML@
|
||||
ACE_BETA = @ACE_BETA@
|
||||
ACE_BZIP2_CPPFLAGS = @ACE_BZIP2_CPPFLAGS@
|
||||
ACE_BZIP2_LDFLAGS = @ACE_BZIP2_LDFLAGS@
|
||||
ACE_BZIP2_LIBS = @ACE_BZIP2_LIBS@
|
||||
ACE_FLTK_CPPFLAGS = @ACE_FLTK_CPPFLAGS@
|
||||
ACE_FLTK_LIBS = @ACE_FLTK_LIBS@
|
||||
ACE_FOX_CPPFLAGS = @ACE_FOX_CPPFLAGS@
|
||||
ACE_FOX_LIBS = @ACE_FOX_LIBS@
|
||||
ACE_KERBEROS_INCLUDES = @ACE_KERBEROS_INCLUDES@
|
||||
ACE_MAJOR = @ACE_MAJOR@
|
||||
ACE_MINOR = @ACE_MINOR@
|
||||
ACE_QT_CPPFLAGS = @ACE_QT_CPPFLAGS@
|
||||
ACE_QT_LIBS = @ACE_QT_LIBS@
|
||||
ACE_TCL_CPPFLAGS = @ACE_TCL_CPPFLAGS@
|
||||
ACE_TCL_LIBS = @ACE_TCL_LIBS@
|
||||
ACE_TESTS_DIR = @ACE_TESTS_DIR@
|
||||
ACE_TK_CPPFLAGS = @ACE_TK_CPPFLAGS@
|
||||
ACE_TK_LIBS = @ACE_TK_LIBS@
|
||||
ACE_TLS_CPPFLAGS = @ACE_TLS_CPPFLAGS@
|
||||
ACE_TLS_LDFLAGS = @ACE_TLS_LDFLAGS@
|
||||
ACE_TLS_LIBS = @ACE_TLS_LIBS@
|
||||
ACE_VERSION_NAME = @ACE_VERSION_NAME@
|
||||
ACE_X11_CPPFLAGS = @ACE_X11_CPPFLAGS@
|
||||
ACE_X11_LDFLAGS = @ACE_X11_LDFLAGS@
|
||||
ACE_X11_LIBS = @ACE_X11_LIBS@
|
||||
ACE_XLIBS = @ACE_XLIBS@
|
||||
ACE_XT_CPPFLAGS = @ACE_XT_CPPFLAGS@
|
||||
ACE_XT_LDFLAGS = @ACE_XT_LDFLAGS@
|
||||
ACE_XT_LIBS = @ACE_XT_LIBS@
|
||||
ACE_ZLIB_CPPFLAGS = @ACE_ZLIB_CPPFLAGS@
|
||||
ACE_ZLIB_LDFLAGS = @ACE_ZLIB_LDFLAGS@
|
||||
ACE_ZLIB_LIBS = @ACE_ZLIB_LIBS@
|
||||
ACE_ZZIP_CPPFLAGS = @ACE_ZZIP_CPPFLAGS@
|
||||
ACE_ZZIP_LDFLAGS = @ACE_ZZIP_LDFLAGS@
|
||||
ACE_ZZIP_LIBS = @ACE_ZZIP_LIBS@
|
||||
ACLOCAL = @ACLOCAL@
|
||||
ALLOCA = @ALLOCA@
|
||||
AMTAR = @AMTAR@
|
||||
AR = @AR@
|
||||
ASNMP = @ASNMP@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXX = @CXX@
|
||||
CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
DSYMUTIL = @DSYMUTIL@
|
||||
DUMPBIN = @DUMPBIN@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
FGREP = @FGREP@
|
||||
FLTKCONFIG = @FLTKCONFIG@
|
||||
FOXCONFIG = @FOXCONFIG@
|
||||
GPERF = @GPERF@
|
||||
GREP = @GREP@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
KOKYU = @KOKYU@
|
||||
LD = @LD@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LEX = @LEX@
|
||||
LEXLIB = @LEXLIB@
|
||||
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LIPO = @LIPO@
|
||||
LN_S = @LN_S@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MKDIR_P = @MKDIR_P@
|
||||
NM = @NM@
|
||||
NMEDIT = @NMEDIT@
|
||||
OBJDUMP = @OBJDUMP@
|
||||
OBJEXT = @OBJEXT@
|
||||
OTOOL = @OTOOL@
|
||||
OTOOL64 = @OTOOL64@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
PROF = @PROF@
|
||||
PURIFY = @PURIFY@
|
||||
QTDIR = @QTDIR@
|
||||
QUANTIFY = @QUANTIFY@
|
||||
Qt_CFLAGS = @Qt_CFLAGS@
|
||||
Qt_LIBS = @Qt_LIBS@
|
||||
RANLIB = @RANLIB@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
TAO = @TAO@
|
||||
VERSION = @VERSION@
|
||||
XMKMF = @XMKMF@
|
||||
XTREACTOR_TEST_XLIBS = @XTREACTOR_TEST_XLIBS@
|
||||
X_CFLAGS = @X_CFLAGS@
|
||||
X_EXTRA_LIBS = @X_EXTRA_LIBS@
|
||||
X_LIBS = @X_LIBS@
|
||||
X_PRE_LIBS = @X_PRE_LIBS@
|
||||
YACC = @YACC@
|
||||
YFLAGS = @YFLAGS@
|
||||
abs_builddir = @abs_builddir@
|
||||
abs_srcdir = @abs_srcdir@
|
||||
abs_top_builddir = @abs_top_builddir@
|
||||
abs_top_srcdir = @abs_top_srcdir@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
builddir = @builddir@
|
||||
datadir = @datadir@
|
||||
datarootdir = @datarootdir@
|
||||
docdir = @docdir@
|
||||
dvidir = @dvidir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
htmldir = @htmldir@
|
||||
includedir = @includedir@/ace/SSL
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localedir = @localedir@
|
||||
localstatedir = @localstatedir@
|
||||
lt_ECHO = @lt_ECHO@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
protocols = @protocols@
|
||||
psdir = @psdir@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
srcdir = @srcdir@
|
||||
subdirs = @subdirs@
|
||||
sysconfdir = @sysconfdir@
|
||||
target = @target@
|
||||
target_alias = @target_alias@
|
||||
target_cpu = @target_cpu@
|
||||
target_os = @target_os@
|
||||
target_vendor = @target_vendor@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
pkgconfigdir = @libdir@/pkgconfig
|
||||
ACE_BUILDDIR = $(top_builddir)
|
||||
ACE_ROOT = $(top_srcdir)
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@lib_LTLIBRARIES = libACE_SSL.la
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@libACE_SSL_la_CPPFLAGS = \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ -I$(ACE_ROOT) \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ -I$(ACE_BUILDDIR) \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ @ACE_TLS_CPPFLAGS@ \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ -DACE_SSL_BUILD_DLL
|
||||
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@libACE_SSL_la_SOURCES = \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_Asynch_BIO.cpp \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_Asynch_Stream.cpp \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_Context.cpp \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_SOCK.cpp \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_SOCK_Acceptor.cpp \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_SOCK_Connector.cpp \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_SOCK_Stream.cpp
|
||||
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@libACE_SSL_la_LDFLAGS = \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ -release @ACE_VERSION_NAME@ @ACE_TLS_LDFLAGS@
|
||||
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@libACE_SSL_la_LIBADD = \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ $(ACE_BUILDDIR)/ace/libACE.la \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ @ACE_TLS_LIBS@
|
||||
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@nobase_include_HEADERS = \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_Asynch_BIO.h \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_Asynch_Stream.h \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_Asynch_Stream.inl \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_Context.h \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_Context.inl \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_Export.h \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_SOCK.h \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_SOCK.inl \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_SOCK_Acceptor.h \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_SOCK_Acceptor.inl \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_SOCK_Connector.h \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_SOCK_Connector.inl \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_SOCK_Stream.h \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ SSL_SOCK_Stream.inl \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ sslconf.h
|
||||
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@pkgconfig_DATA = \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ ACE_SSL.pc
|
||||
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@CLEANFILES = \
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ ACE_SSL.pc
|
||||
|
||||
EXTRA_DIST = \
|
||||
ACE_SSL.pc.in
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .cpp .lo .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign ace/SSL/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --foreign ace/SSL/Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
|
||||
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
||||
list2=; for p in $$list; do \
|
||||
if test -f $$p; then \
|
||||
list2="$$list2 $$p"; \
|
||||
else :; fi; \
|
||||
done; \
|
||||
test -z "$$list2" || { \
|
||||
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
|
||||
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
|
||||
}
|
||||
|
||||
uninstall-libLTLIBRARIES:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
||||
for p in $$list; do \
|
||||
$(am__strip_dir) \
|
||||
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
|
||||
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
|
||||
done
|
||||
|
||||
clean-libLTLIBRARIES:
|
||||
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
||||
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
||||
test "$$dir" != "$$p" || dir=.; \
|
||||
echo "rm -f \"$${dir}/so_locations\""; \
|
||||
rm -f "$${dir}/so_locations"; \
|
||||
done
|
||||
libACE_SSL.la: $(libACE_SSL_la_OBJECTS) $(libACE_SSL_la_DEPENDENCIES)
|
||||
$(libACE_SSL_la_LINK) $(am_libACE_SSL_la_rpath) $(libACE_SSL_la_OBJECTS) $(libACE_SSL_la_LIBADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_SSL_la-SSL_Asynch_BIO.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_SSL_la-SSL_Asynch_Stream.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_SSL_la-SSL_Context.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_SSL_la-SSL_SOCK.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_SSL_la-SSL_SOCK_Acceptor.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_SSL_la-SSL_SOCK_Connector.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libACE_SSL_la-SSL_SOCK_Stream.Plo@am__quote@
|
||||
|
||||
.cpp.o:
|
||||
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
|
||||
|
||||
.cpp.obj:
|
||||
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
.cpp.lo:
|
||||
@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $<
|
||||
|
||||
libACE_SSL_la-SSL_Asynch_BIO.lo: SSL_Asynch_BIO.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_SSL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_SSL_la-SSL_Asynch_BIO.lo -MD -MP -MF $(DEPDIR)/libACE_SSL_la-SSL_Asynch_BIO.Tpo -c -o libACE_SSL_la-SSL_Asynch_BIO.lo `test -f 'SSL_Asynch_BIO.cpp' || echo '$(srcdir)/'`SSL_Asynch_BIO.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_SSL_la-SSL_Asynch_BIO.Tpo $(DEPDIR)/libACE_SSL_la-SSL_Asynch_BIO.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SSL_Asynch_BIO.cpp' object='libACE_SSL_la-SSL_Asynch_BIO.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_SSL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_SSL_la-SSL_Asynch_BIO.lo `test -f 'SSL_Asynch_BIO.cpp' || echo '$(srcdir)/'`SSL_Asynch_BIO.cpp
|
||||
|
||||
libACE_SSL_la-SSL_Asynch_Stream.lo: SSL_Asynch_Stream.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_SSL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_SSL_la-SSL_Asynch_Stream.lo -MD -MP -MF $(DEPDIR)/libACE_SSL_la-SSL_Asynch_Stream.Tpo -c -o libACE_SSL_la-SSL_Asynch_Stream.lo `test -f 'SSL_Asynch_Stream.cpp' || echo '$(srcdir)/'`SSL_Asynch_Stream.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_SSL_la-SSL_Asynch_Stream.Tpo $(DEPDIR)/libACE_SSL_la-SSL_Asynch_Stream.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SSL_Asynch_Stream.cpp' object='libACE_SSL_la-SSL_Asynch_Stream.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_SSL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_SSL_la-SSL_Asynch_Stream.lo `test -f 'SSL_Asynch_Stream.cpp' || echo '$(srcdir)/'`SSL_Asynch_Stream.cpp
|
||||
|
||||
libACE_SSL_la-SSL_Context.lo: SSL_Context.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_SSL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_SSL_la-SSL_Context.lo -MD -MP -MF $(DEPDIR)/libACE_SSL_la-SSL_Context.Tpo -c -o libACE_SSL_la-SSL_Context.lo `test -f 'SSL_Context.cpp' || echo '$(srcdir)/'`SSL_Context.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_SSL_la-SSL_Context.Tpo $(DEPDIR)/libACE_SSL_la-SSL_Context.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SSL_Context.cpp' object='libACE_SSL_la-SSL_Context.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_SSL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_SSL_la-SSL_Context.lo `test -f 'SSL_Context.cpp' || echo '$(srcdir)/'`SSL_Context.cpp
|
||||
|
||||
libACE_SSL_la-SSL_SOCK.lo: SSL_SOCK.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_SSL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_SSL_la-SSL_SOCK.lo -MD -MP -MF $(DEPDIR)/libACE_SSL_la-SSL_SOCK.Tpo -c -o libACE_SSL_la-SSL_SOCK.lo `test -f 'SSL_SOCK.cpp' || echo '$(srcdir)/'`SSL_SOCK.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_SSL_la-SSL_SOCK.Tpo $(DEPDIR)/libACE_SSL_la-SSL_SOCK.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SSL_SOCK.cpp' object='libACE_SSL_la-SSL_SOCK.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_SSL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_SSL_la-SSL_SOCK.lo `test -f 'SSL_SOCK.cpp' || echo '$(srcdir)/'`SSL_SOCK.cpp
|
||||
|
||||
libACE_SSL_la-SSL_SOCK_Acceptor.lo: SSL_SOCK_Acceptor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_SSL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_SSL_la-SSL_SOCK_Acceptor.lo -MD -MP -MF $(DEPDIR)/libACE_SSL_la-SSL_SOCK_Acceptor.Tpo -c -o libACE_SSL_la-SSL_SOCK_Acceptor.lo `test -f 'SSL_SOCK_Acceptor.cpp' || echo '$(srcdir)/'`SSL_SOCK_Acceptor.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_SSL_la-SSL_SOCK_Acceptor.Tpo $(DEPDIR)/libACE_SSL_la-SSL_SOCK_Acceptor.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SSL_SOCK_Acceptor.cpp' object='libACE_SSL_la-SSL_SOCK_Acceptor.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_SSL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_SSL_la-SSL_SOCK_Acceptor.lo `test -f 'SSL_SOCK_Acceptor.cpp' || echo '$(srcdir)/'`SSL_SOCK_Acceptor.cpp
|
||||
|
||||
libACE_SSL_la-SSL_SOCK_Connector.lo: SSL_SOCK_Connector.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_SSL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_SSL_la-SSL_SOCK_Connector.lo -MD -MP -MF $(DEPDIR)/libACE_SSL_la-SSL_SOCK_Connector.Tpo -c -o libACE_SSL_la-SSL_SOCK_Connector.lo `test -f 'SSL_SOCK_Connector.cpp' || echo '$(srcdir)/'`SSL_SOCK_Connector.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_SSL_la-SSL_SOCK_Connector.Tpo $(DEPDIR)/libACE_SSL_la-SSL_SOCK_Connector.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SSL_SOCK_Connector.cpp' object='libACE_SSL_la-SSL_SOCK_Connector.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_SSL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_SSL_la-SSL_SOCK_Connector.lo `test -f 'SSL_SOCK_Connector.cpp' || echo '$(srcdir)/'`SSL_SOCK_Connector.cpp
|
||||
|
||||
libACE_SSL_la-SSL_SOCK_Stream.lo: SSL_SOCK_Stream.cpp
|
||||
@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_SSL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libACE_SSL_la-SSL_SOCK_Stream.lo -MD -MP -MF $(DEPDIR)/libACE_SSL_la-SSL_SOCK_Stream.Tpo -c -o libACE_SSL_la-SSL_SOCK_Stream.lo `test -f 'SSL_SOCK_Stream.cpp' || echo '$(srcdir)/'`SSL_SOCK_Stream.cpp
|
||||
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/libACE_SSL_la-SSL_SOCK_Stream.Tpo $(DEPDIR)/libACE_SSL_la-SSL_SOCK_Stream.Plo
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SSL_SOCK_Stream.cpp' object='libACE_SSL_la-SSL_SOCK_Stream.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libACE_SSL_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libACE_SSL_la-SSL_SOCK_Stream.lo `test -f 'SSL_SOCK_Stream.cpp' || echo '$(srcdir)/'`SSL_SOCK_Stream.cpp
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
install-pkgconfigDATA: $(pkgconfig_DATA)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
|
||||
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
||||
for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
echo "$$d$$p"; \
|
||||
done | $(am__base_list) | \
|
||||
while read files; do \
|
||||
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
|
||||
$(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
|
||||
done
|
||||
|
||||
uninstall-pkgconfigDATA:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
||||
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
||||
test -n "$$files" || exit 0; \
|
||||
echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
|
||||
cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
|
||||
install-nobase_includeHEADERS: $(nobase_include_HEADERS)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
|
||||
@list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \
|
||||
$(am__nobase_list) | while read dir files; do \
|
||||
xfiles=; for file in $$files; do \
|
||||
if test -f "$$file"; then xfiles="$$xfiles $$file"; \
|
||||
else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
|
||||
test -z "$$xfiles" || { \
|
||||
test "x$$dir" = x. || { \
|
||||
echo "$(MKDIR_P) '$(DESTDIR)$(includedir)/$$dir'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(includedir)/$$dir"; }; \
|
||||
echo " $(INSTALL_HEADER) $$xfiles '$(DESTDIR)$(includedir)/$$dir'"; \
|
||||
$(INSTALL_HEADER) $$xfiles "$(DESTDIR)$(includedir)/$$dir" || exit $$?; }; \
|
||||
done
|
||||
|
||||
uninstall-nobase_includeHEADERS:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \
|
||||
$(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
|
||||
test -n "$$files" || exit 0; \
|
||||
echo " ( cd '$(DESTDIR)$(includedir)' && rm -f" $$files ")"; \
|
||||
cd "$(DESTDIR)$(includedir)" && rm -f $$files
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(includedir)"; do \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
done
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libLTLIBRARIES clean-libtool clean-local \
|
||||
mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-nobase_includeHEADERS install-pkgconfigDATA
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am: install-libLTLIBRARIES
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-libLTLIBRARIES uninstall-nobase_includeHEADERS \
|
||||
uninstall-pkgconfigDATA
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
||||
clean-libLTLIBRARIES clean-libtool clean-local ctags distclean \
|
||||
distclean-compile distclean-generic distclean-libtool \
|
||||
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
||||
install install-am install-data install-data-am install-dvi \
|
||||
install-dvi-am install-exec install-exec-am install-html \
|
||||
install-html-am install-info install-info-am \
|
||||
install-libLTLIBRARIES install-man \
|
||||
install-nobase_includeHEADERS install-pdf install-pdf-am \
|
||||
install-pkgconfigDATA install-ps install-ps-am install-strip \
|
||||
installcheck installcheck-am installdirs maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||
tags uninstall uninstall-am uninstall-libLTLIBRARIES \
|
||||
uninstall-nobase_includeHEADERS uninstall-pkgconfigDATA
|
||||
|
||||
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ACE_SSL.pc: ${top_builddir}/config.status ${srcdir}/ACE_SSL.pc.in
|
||||
@BUILD_ACE_FOR_TAO_FALSE@@BUILD_SSL_TRUE@ ${top_builddir}/config.status --file $@:${srcdir}/ACE_SSL.pc.in
|
||||
|
||||
clean-local:
|
||||
-rm -f *~ *.bak *.rpo *.sym lib*.*_pure_* core core.*
|
||||
-rm -f gcctemp.c gcctemp so_locations *.ics
|
||||
-rm -rf cxx_repository ptrepository ti_files
|
||||
-rm -rf templateregistry ir.out
|
||||
-rm -rf ptrepository SunWS_cache Templates.DB
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
// -*- MPC -*-
|
||||
// $Id: ssl.mpc 91974 2010-09-23 16:17:42Z mitza $
|
||||
|
||||
project(SSL) : acelib, ace_output, install, ace_openssl {
|
||||
avoids += ace_for_tao
|
||||
requires += ssl
|
||||
sharedname = ACE_SSL
|
||||
dynamicflags += ACE_SSL_BUILD_DLL
|
||||
|
||||
specific {
|
||||
install_dir = ace/SSL
|
||||
}
|
||||
|
||||
pkgconfig_files {
|
||||
ACE_SSL.pc.in
|
||||
}
|
||||
|
||||
specific(gnuace) {
|
||||
pkgconfig_variables += ACE_TLS_CPPFLAGS=$(PLATFORM_SSL_CPPFLAGS)
|
||||
pkgconfig_variables += ACE_TLS_LDFLAGS=$(PLATFORM_SSL_LDFLAGS)
|
||||
pkgconfig_variables += ACE_TLS_LIBS=$(PLATFORM_SSL_LIBS)
|
||||
}
|
||||
}
|
||||
|
|
@ -1,46 +0,0 @@
|
|||
// -*- MPC -*-
|
||||
//
|
||||
// $Id: ssl_for_tao.mpc 90826 2010-06-24 09:07:33Z johnnyw $
|
||||
|
||||
project(SSL_FOR_TAO) : acelib, ace_output, install, ace_openssl {
|
||||
requires += ssl ace_for_tao
|
||||
sharedname = ACE_SSL_FOR_TAO
|
||||
dynamicflags += ACE_SSL_BUILD_DLL
|
||||
|
||||
Source_Files {
|
||||
SSL_Context.cpp
|
||||
SSL_SOCK.cpp
|
||||
SSL_SOCK_Acceptor.cpp
|
||||
SSL_SOCK_Connector.cpp
|
||||
SSL_SOCK_Stream.cpp
|
||||
}
|
||||
|
||||
Header_Files {
|
||||
SSL_Context.h
|
||||
SSL_Export.h
|
||||
SSL_SOCK.h
|
||||
SSL_SOCK_Acceptor.h
|
||||
SSL_SOCK_Connector.h
|
||||
SSL_SOCK_Stream.h
|
||||
sslconf.h
|
||||
}
|
||||
|
||||
Inline_Files {
|
||||
SSL_SOCK.inl
|
||||
SSL_SOCK_Acceptor.inl
|
||||
SSL_SOCK_Connector.inl
|
||||
SSL_Context.inl
|
||||
SSL_SOCK_Stream.inl
|
||||
}
|
||||
|
||||
Template_Files {
|
||||
}
|
||||
|
||||
pkgconfig_files {
|
||||
ACE_SSL.pc.in
|
||||
}
|
||||
|
||||
specific {
|
||||
install_dir = ace/SSL
|
||||
}
|
||||
}
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
// -*- C++ -*-
|
||||
|
||||
//=============================================================================
|
||||
/**
|
||||
* @file Strategies.h
|
||||
*
|
||||
* $Id: Strategies.h 80826 2008-03-04 14:51:23Z wotte $
|
||||
*
|
||||
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
|
||||
*/
|
||||
//=============================================================================
|
||||
|
||||
#ifndef ACE_STRATEGIES_H
|
||||
#define ACE_STRATEGIES_H
|
||||
#include /**/ "ace/pre.h"
|
||||
|
||||
#include /**/ "ace/config-all.h"
|
||||
|
||||
#if !defined (ACE_LACKS_PRAGMA_ONCE)
|
||||
# pragma once
|
||||
#endif /* ACE_LACKS_PRAGMA_ONCE */
|
||||
|
||||
/// Place holder for backward compatibility..
|
||||
#include "ace/Connection_Recycling_Strategy.h"
|
||||
#include "ace/Hashable.h"
|
||||
#include "ace/Notification_Strategy.h"
|
||||
#include "ace/Reactor_Notification_Strategy.h"
|
||||
#include "ace/Recyclable.h"
|
||||
#include "ace/Refcountable.h"
|
||||
|
||||
|
||||
#include /**/ "ace/post.h"
|
||||
#endif /*ACE_STRATEGIES_H*/
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue