powerlink: build liboplkmn.a and liboplkcn.a

This commit is contained in:
Jiacheng Shi 2022-03-26 13:51:38 +08:00
parent e69a07184a
commit ec6af99e6a
114 changed files with 11166 additions and 10 deletions

View File

@ -1,2 +1,22 @@
all: COMPILER
CUR_DIR := $(shell pwd)
OPLK_ROOT := $(CUR_DIR)/openPOWERLINK
LIBOPLKMN := $(OPLK_ROOT)/stack/lib/xiuos/arm/liboplkmn.a
LIBOPLKCN := $(OPLK_ROOT)/stack/lib/xiuos/arm/liboplkcn.a
LIBOPLK_BUILD_DIR := $(OPLK_ROOT)/stack/build/xiuos
OPLK_TOOLCHAIN := $(OPLK_ROOT)/cmake/toolchain-xiuos-arm-none-eabi-gnu.cmake
.PHONY: $(LIBOPLKMN) $(LIBOPLKCN)
$(LIBOPLKMN) $(LIBOPLKCN)&:
cd $(LIBOPLK_BUILD_DIR) && \
rm -rf CMakeFiles proj cmake_install.cmake CMakeCache.txt Makefile && \
cmake -DCMAKE_TOOLCHAIN_FILE=$(OPLK_TOOLCHAIN) ../.. && \
cmake --build . --target install
LIBOPLKMN := $(LIBOPLKMN:$(CUR_DIR)/%=%)
LIBOPLKCN := $(LIBOPLKCN:$(CUR_DIR)/%=%)
SRC_FILES := $(LIBOPLKMN) $(LIBOPLKCN)
include $(KERNEL_ROOT)/compiler.mk

View File

@ -0,0 +1,73 @@
set(CMAKE_C_COMPILER "/usr/bin/arm-none-eabi-gcc")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "6.3.1")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
set(CMAKE_C_COMPILE_FEATURES "")
set(CMAKE_C90_COMPILE_FEATURES "")
set(CMAKE_C99_COMPILE_FEATURES "")
set(CMAKE_C11_COMPILE_FEATURES "")
set(CMAKE_C_PLATFORM_ID "")
set(CMAKE_C_SIMULATE_ID "")
set(CMAKE_C_SIMULATE_VERSION "")
set(CMAKE_AR "/usr/bin/arm-none-eabi-ar")
set(CMAKE_C_COMPILER_AR "/usr/bin/arm-none-eabi-gcc-ar")
set(CMAKE_RANLIB "/usr/bin/arm-none-eabi-ranlib")
set(CMAKE_C_COMPILER_RANLIB "/usr/bin/arm-none-eabi-gcc-ranlib")
set(CMAKE_LINKER "/usr/bin/arm-none-eabi-ld")
set(CMAKE_COMPILER_IS_GNUCC 1)
set(CMAKE_C_COMPILER_LOADED 1)
set(CMAKE_C_COMPILER_WORKS TRUE)
set(CMAKE_C_ABI_COMPILED FALSE)
set(CMAKE_COMPILER_IS_MINGW )
set(CMAKE_COMPILER_IS_CYGWIN )
if(CMAKE_COMPILER_IS_CYGWIN)
set(CYGWIN 1)
set(UNIX 1)
endif()
set(CMAKE_C_COMPILER_ENV_VAR "CC")
if(CMAKE_COMPILER_IS_MINGW)
set(MINGW 1)
endif()
set(CMAKE_C_COMPILER_ID_RUN 1)
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_C_LINKER_PREFERENCE 10)
# Save compiler ABI information.
set(CMAKE_C_SIZEOF_DATA_PTR "")
set(CMAKE_C_COMPILER_ABI "")
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
if(CMAKE_C_SIZEOF_DATA_PTR)
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
endif()
if(CMAKE_C_COMPILER_ABI)
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
endif()
if(CMAKE_C_LIBRARY_ARCHITECTURE)
set(CMAKE_LIBRARY_ARCHITECTURE "")
endif()
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
endif()
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -0,0 +1,15 @@
set(CMAKE_HOST_SYSTEM "Linux-5.16.15-arch1-1")
set(CMAKE_HOST_SYSTEM_NAME "Linux")
set(CMAKE_HOST_SYSTEM_VERSION "5.16.15-arch1-1")
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
include("/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/cmake/toolchain-xiuos-arm-none-eabi-gnu.cmake")
set(CMAKE_SYSTEM "XiUOS")
set(CMAKE_SYSTEM_NAME "XiUOS")
set(CMAKE_SYSTEM_VERSION "")
set(CMAKE_SYSTEM_PROCESSOR "arm")
set(CMAKE_CROSSCOMPILING "TRUE")
set(CMAKE_SYSTEM_LOADED 1)

View File

@ -0,0 +1,598 @@
#ifdef __cplusplus
# error "A C++ compiler has been selected for C."
#endif
#if defined(__18CXX)
# define ID_VOID_MAIN
#endif
#if defined(__CLASSIC_C__)
/* cv-qualifiers did not exist in K&R C */
# define const
# define volatile
#endif
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
#if defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
/* __INTEL_COMPILER = VRP */
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
# endif
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
# define COMPILER_ID "Embarcadero"
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
#elif defined(__BORLANDC__)
# define COMPILER_ID "Borland"
/* __BORLANDC__ = 0xVRR */
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
# define COMPILER_ID "Watcom"
/* __WATCOMC__ = VVRR */
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__WATCOMC__)
# define COMPILER_ID "OpenWatcom"
/* __WATCOMC__ = VVRP + 1100 */
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__SUNPRO_C)
# define COMPILER_ID "SunPro"
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# endif
#elif defined(__HP_cc)
# define COMPILER_ID "HP"
/* __HP_cc = VVRRPP */
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
#elif defined(__DECC)
# define COMPILER_ID "Compaq"
/* __DECC_VER = VVRRTPPPP */
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
# define COMPILER_ID "XL"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
# define COMPILER_ID "VisualAge"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__PGI)
# define COMPILER_ID "PGI"
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
# endif
#elif defined(_CRAYC)
# define COMPILER_ID "Cray"
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
#elif defined(__TI_COMPILER_VERSION__)
# define COMPILER_ID "TI"
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
# define COMPILER_ID "Fujitsu"
#elif defined(__TINYC__)
# define COMPILER_ID "TinyCC"
#elif defined(__BCC__)
# define COMPILER_ID "Bruce"
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#elif defined(__clang__) && defined(__apple_build_version__)
# define COMPILER_ID "AppleClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
#elif defined(__clang__)
# define COMPILER_ID "Clang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
#elif defined(__GNUC__)
# define COMPILER_ID "GNU"
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
# if defined(__GNUC_MINOR__)
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(_MSC_VER)
# define COMPILER_ID "MSVC"
/* _MSC_VER = VVRR */
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
# endif
#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
# define COMPILER_ID "ADSP"
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif
#elif defined(__ARMCC_VERSION)
# define COMPILER_ID "ARMCC"
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
# define COMPILER_ID "SDCC"
# if defined(__SDCC_VERSION_MAJOR)
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
# else
/* SDCC = VRP */
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
# endif
#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
# define COMPILER_ID "MIPSpro"
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10)
# endif
/* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that
it is the native compiler. */
#elif defined(__sgi)
# define COMPILER_ID "MIPSpro"
#elif defined(__hpux) || defined(__hpua)
# define COMPILER_ID "HP"
#else /* unknown compiler */
# define COMPILER_ID ""
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
#ifdef SIMULATE_ID
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
#endif
#ifdef __QNXNTO__
char const* qnxnto = "INFO" ":" "qnxnto[]";
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#endif
#define STRINGIFY_HELPER(X) #X
#define STRINGIFY(X) STRINGIFY_HELPER(X)
/* Identify known platforms by name. */
#if defined(__linux) || defined(__linux__) || defined(linux)
# define PLATFORM_ID "Linux"
#elif defined(__CYGWIN__)
# define PLATFORM_ID "Cygwin"
#elif defined(__MINGW32__)
# define PLATFORM_ID "MinGW"
#elif defined(__APPLE__)
# define PLATFORM_ID "Darwin"
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
# define PLATFORM_ID "Windows"
#elif defined(__FreeBSD__) || defined(__FreeBSD)
# define PLATFORM_ID "FreeBSD"
#elif defined(__NetBSD__) || defined(__NetBSD)
# define PLATFORM_ID "NetBSD"
#elif defined(__OpenBSD__) || defined(__OPENBSD)
# define PLATFORM_ID "OpenBSD"
#elif defined(__sun) || defined(sun)
# define PLATFORM_ID "SunOS"
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
# define PLATFORM_ID "AIX"
#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
# define PLATFORM_ID "IRIX"
#elif defined(__hpux) || defined(__hpux__)
# define PLATFORM_ID "HP-UX"
#elif defined(__HAIKU__)
# define PLATFORM_ID "Haiku"
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
# define PLATFORM_ID "BeOS"
#elif defined(__QNX__) || defined(__QNXNTO__)
# define PLATFORM_ID "QNX"
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
# define PLATFORM_ID "Tru64"
#elif defined(__riscos) || defined(__riscos__)
# define PLATFORM_ID "RISCos"
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
# define PLATFORM_ID "SINIX"
#elif defined(__UNIX_SV__)
# define PLATFORM_ID "UNIX_SV"
#elif defined(__bsdos__)
# define PLATFORM_ID "BSDOS"
#elif defined(_MPRAS) || defined(MPRAS)
# define PLATFORM_ID "MP-RAS"
#elif defined(__osf) || defined(__osf__)
# define PLATFORM_ID "OSF1"
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
# define PLATFORM_ID "SCO_SV"
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
# define PLATFORM_ID "ULTRIX"
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
# define PLATFORM_ID "Xenix"
#elif defined(__WATCOMC__)
# if defined(__LINUX__)
# define PLATFORM_ID "Linux"
# elif defined(__DOS__)
# define PLATFORM_ID "DOS"
# elif defined(__OS2__)
# define PLATFORM_ID "OS2"
# elif defined(__WINDOWS__)
# define PLATFORM_ID "Windows3x"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#else /* unknown platform */
# define PLATFORM_ID
#endif
/* For windows compilers MSVC and Intel we can determine
the architecture of the compiler being used. This is because
the compilers do not have flags that can change the architecture,
but rather depend on which compiler is being used
*/
#if defined(_WIN32) && defined(_MSC_VER)
# if defined(_M_IA64)
# define ARCHITECTURE_ID "IA64"
# elif defined(_M_X64) || defined(_M_AMD64)
# define ARCHITECTURE_ID "x64"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# elif defined(_M_ARM64)
# define ARCHITECTURE_ID "ARM64"
# elif defined(_M_ARM)
# if _M_ARM == 4
# define ARCHITECTURE_ID "ARMV4I"
# elif _M_ARM == 5
# define ARCHITECTURE_ID "ARMV5I"
# else
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
# endif
# elif defined(_M_MIPS)
# define ARCHITECTURE_ID "MIPS"
# elif defined(_M_SH)
# define ARCHITECTURE_ID "SHx"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__WATCOMC__)
# if defined(_M_I86)
# define ARCHITECTURE_ID "I86"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#else
# define ARCHITECTURE_ID
#endif
/* Convert integer to decimal digit literals. */
#define DEC(n) \
('0' + (((n) / 10000000)%10)), \
('0' + (((n) / 1000000)%10)), \
('0' + (((n) / 100000)%10)), \
('0' + (((n) / 10000)%10)), \
('0' + (((n) / 1000)%10)), \
('0' + (((n) / 100)%10)), \
('0' + (((n) / 10)%10)), \
('0' + ((n) % 10))
/* Convert integer to hex digit literals. */
#define HEX(n) \
('0' + ((n)>>28 & 0xF)), \
('0' + ((n)>>24 & 0xF)), \
('0' + ((n)>>20 & 0xF)), \
('0' + ((n)>>16 & 0xF)), \
('0' + ((n)>>12 & 0xF)), \
('0' + ((n)>>8 & 0xF)), \
('0' + ((n)>>4 & 0xF)), \
('0' + ((n) & 0xF))
/* Construct a string literal encoding the version number components. */
#ifdef COMPILER_VERSION_MAJOR
char const info_version[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
COMPILER_VERSION_MAJOR,
# ifdef COMPILER_VERSION_MINOR
'.', COMPILER_VERSION_MINOR,
# ifdef COMPILER_VERSION_PATCH
'.', COMPILER_VERSION_PATCH,
# ifdef COMPILER_VERSION_TWEAK
'.', COMPILER_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct a string literal encoding the internal version number. */
#ifdef COMPILER_VERSION_INTERNAL
char const info_version_internal[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
'i','n','t','e','r','n','a','l','[',
COMPILER_VERSION_INTERNAL,']','\0'};
#endif
/* Construct a string literal encoding the version number components. */
#ifdef SIMULATE_VERSION_MAJOR
char const info_simulate_version[] = {
'I', 'N', 'F', 'O', ':',
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
SIMULATE_VERSION_MAJOR,
# ifdef SIMULATE_VERSION_MINOR
'.', SIMULATE_VERSION_MINOR,
# ifdef SIMULATE_VERSION_PATCH
'.', SIMULATE_VERSION_PATCH,
# ifdef SIMULATE_VERSION_TWEAK
'.', SIMULATE_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
#if !defined(__STDC__)
# if defined(_MSC_VER) && !defined(__clang__)
# define C_DIALECT "90"
# else
# define C_DIALECT
# endif
#elif __STDC_VERSION__ >= 201000L
# define C_DIALECT "11"
#elif __STDC_VERSION__ >= 199901L
# define C_DIALECT "99"
#else
# define C_DIALECT "90"
#endif
const char* info_language_dialect_default =
"INFO" ":" "dialect_default[" C_DIALECT "]";
/*--------------------------------------------------------------------------*/
#ifdef ID_VOID_MAIN
void main() {}
#else
# if defined(__CLASSIC_C__)
int main(argc, argv) int argc; char *argv[];
# else
int main(int argc, char* argv[])
# endif
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
require += info_arch[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#ifdef COMPILER_VERSION_INTERNAL
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
require += info_cray[argc];
#endif
require += info_language_dialect_default[argc];
(void)argv;
return require;
}
#endif

View File

@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

View File

@ -0,0 +1,99 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
# The generator used is:
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
# The top level Makefile was generated from the following files:
set(CMAKE_MAKEFILE_DEPENDS
"CMakeCache.txt"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/cmake/configure-xiuos.cmake"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/cmake/findoplklib.cmake"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/cmake/linkoplklib.cmake"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/cmake/options.cmake"
"../../CMakeLists.txt"
"CMakeFiles/3.10.2/CMakeCCompiler.cmake"
"CMakeFiles/3.10.2/CMakeSystem.cmake"
"CMakeFiles/feature_tests.c"
"../../xiuos.cmake"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/cmake/toolchain-xiuos-arm-none-eabi-gnu.cmake"
"/usr/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in"
"/usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c"
"/usr/share/cmake-3.10/Modules/CMakeCInformation.cmake"
"/usr/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake"
"/usr/share/cmake-3.10/Modules/CMakeCompilerIdDetection.cmake"
"/usr/share/cmake-3.10/Modules/CMakeDependentOption.cmake"
"/usr/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake"
"/usr/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake"
"/usr/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake"
"/usr/share/cmake-3.10/Modules/CMakeDetermineCompilerId.cmake"
"/usr/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake"
"/usr/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake"
"/usr/share/cmake-3.10/Modules/CMakeGenericSystem.cmake"
"/usr/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake"
"/usr/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake"
"/usr/share/cmake-3.10/Modules/CMakeSystem.cmake.in"
"/usr/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake"
"/usr/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake"
"/usr/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake"
"/usr/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake"
"/usr/share/cmake-3.10/Modules/CMakeUnixFindMake.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/ADSP-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Borland-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Cray-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/GHS-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/GNU-C-FeatureTests.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/GNU-C.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/GNU-FindBinUtils.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/GNU.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/HP-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/IAR-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Intel-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/MIPSpro-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/MSVC-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/PGI-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/PathScale-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/SCO-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/TI-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Watcom-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/XL-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake"
)
# The corresponding makefile is:
set(CMAKE_MAKEFILE_OUTPUTS
"Makefile"
"CMakeFiles/cmake.check_cache"
)
# Byproducts of CMake generate step:
set(CMAKE_MAKEFILE_PRODUCTS
"CMakeFiles/3.10.2/CMakeSystem.cmake"
"CMakeFiles/3.10.2/CMakeCCompiler.cmake"
"CMakeFiles/3.10.2/CMakeCCompiler.cmake"
"CMakeFiles/CMakeDirectoryInformation.cmake"
)
# Dependency information for all targets:
set(CMAKE_DEPEND_INFO_FILES
"CMakeFiles/demo_cn_console.dir/DependInfo.cmake"
)

View File

@ -0,0 +1,108 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# The main recursive all target
all:
.PHONY : all
# The main recursive preinstall target
preinstall:
.PHONY : preinstall
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos
#=============================================================================
# Target rules for target CMakeFiles/demo_cn_console.dir
# All Build rule for target.
CMakeFiles/demo_cn_console.dir/all:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/depend
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12 "Built target demo_cn_console"
.PHONY : CMakeFiles/demo_cn_console.dir/all
# Include target in all.
all: CMakeFiles/demo_cn_console.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
CMakeFiles/demo_cn_console.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles 12
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/demo_cn_console.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles 0
.PHONY : CMakeFiles/demo_cn_console.dir/rule
# Convenience name for target.
demo_cn_console: CMakeFiles/demo_cn_console.dir/rule
.PHONY : demo_cn_console
# clean rule for target.
CMakeFiles/demo_cn_console.dir/clean:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/clean
.PHONY : CMakeFiles/demo_cn_console.dir/clean
# clean rule for target.
clean: CMakeFiles/demo_cn_console.dir/clean
.PHONY : clean
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@ -0,0 +1,7 @@
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/install/strip.dir
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/edit_cache.dir
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/demo_cn_console.dir
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/install.dir
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/rebuild_cache.dir
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/list_install_components.dir
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/install/local.dir

View File

@ -0,0 +1 @@
# This file is generated by cmake for dependency checking of the CMakeCache.txt file

View File

@ -0,0 +1,462 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
../../../../contrib/console/console.h
../../../../contrib/getopt/getopt.h
../../../../contrib/trace/trace.h
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
oplk/oplkinc.h
-
../../../../stack/include/oplk/debugstr.h
oplk/oplk.h
-
oplk/event.h
-
oplk/nmt.h
-
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
oplk/oplkinc.h
-
oplk/nmt.h
-
../../../../stack/include/oplk/frame.h
oplk/oplkinc.h
-
../../../../stack/include/oplk/nmt.h
oplk/oplkinc.h
-
../../../../stack/include/oplk/obd.h
oplk/oplkinc.h
-
oplk/sdo.h
-
../../../../stack/include/oplk/obdal.h
oplk/oplkinc.h
-
../../../../stack/include/oplk/oplk.h
oplk/oplkinc.h
-
oplk/frame.h
-
oplk/sdo.h
-
oplk/obd.h
-
oplk/obdal.h
-
oplk/cfm.h
-
oplk/event.h
-
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
oplk/targetsystem.h
-
oplk/oplkdefs.h
-
oplk/errordefs.h
-
oplk/version.h
-
../../../../stack/include/oplk/sdo.h
oplk/oplkinc.h
-
oplk/sdoabortcodes.h
-
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
stdlib.h
-
stdio.h
-
string.h
-
stdint.h
-
oplk/basictypes.h
-
socal/socal.h
-
alt_cache.h
-
../../../../stack/include/oplk/targetdefs/linux.h
stdlib.h
-
stdio.h
-
string.h
-
semaphore.h
-
linux/module.h
-
linux/kernel.h
-
linux/init.h
-
linux/errno.h
-
linux/major.h
-
linux/version.h
-
linux/slab.h
-
oplk/basictypes.h
-
../../../../stack/include/oplk/targetdefs/microblaze.h
stdlib.h
-
stdio.h
-
string.h
-
xil_types.h
-
xil_io.h
-
xil_cache.h
-
mb_interface.h
-
mb_uart.h
-
oplk/basictypes.h
-
../../../../stack/include/oplk/targetdefs/nios2.h
stdlib.h
-
stdio.h
-
string.h
-
alt_types.h
-
io.h
-
system.h
-
oplk/basictypes.h
-
altera_vic_regs.h
-
../../../../stack/include/oplk/targetdefs/vxworks.h
stdlib.h
-
stdio.h
-
string.h
-
oplk/basictypes.h
-
../../../../stack/include/oplk/targetdefs/wince.h
oplk/basictypes.h
-
../../../../stack/include/oplk/targetdefs/windows-mingw.h
stdlib.h
-
stdio.h
-
string.h
-
Windows.h
-
oplk/basictypes.h
-
../../../../stack/include/oplk/targetdefs/windows.h
stdlib.h
-
stdio.h
-
string.h
-
Windows.h
-
oplk/basictypes.h
-
../../../../stack/include/oplk/targetdefs/winkernel.h
stdlib.h
-
stdio.h
-
string.h
-
ntdef.h
-
ndis.h
-
oplk/basictypes.h
-
../../../../stack/include/oplk/targetsystem.h
oplk/targetdefs/linux.h
-
oplk/targetdefs/vxworks.h
-
oplk/targetdefs/nios2.h
-
oplk/targetdefs/microblaze.h
-
oplk/targetdefs/c5socarm.h
-
oplk/targetdefs/winkernel.h
-
oplk/targetdefs/windows.h
-
oplk/targetdefs/windows-mingw.h
-
oplk/targetdefs/wince.h
-
../../../../stack/include/oplk/version.h
../../../common/objdicts/CiA401_CN/objdict.h
obdcreate/obdmacro.h
-
limits.h
-
obdcreate/obdmacro.h
-
../../../common/src/eventlog/eventlog.h
oplk/oplk.h
-
oplk/nmt.h
-
eventlogstring.h
../../../common/src/eventlog/eventlogstring.h
../../../common/src/eventlog/eventlogstring.h
oplk/oplk.h
-
oplk/nmt.h
-
stdarg.h
-
../../../common/src/netselect/netselect.h
../../../common/src/obdcreate/obdcreate.h
oplk/oplk.h
-
../../../common/src/obdcreate/obdmacro.h
../../../common/src/system/system.h
oplk/oplk.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c
eventlog.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.h
oplk/debugstr.h
-
stdio.h
-
time.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.h
oplk/oplk.h
-
oplk/nmt.h
-
eventlogstring.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c
eventlogstring.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.h
oplk/debugstr.h
-
stdio.h
-
time.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.h
oplk/oplk.h
-
oplk/nmt.h
-
stdarg.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c
oplk/oplk.h
-
netselect.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.h
stdio.h
-
string.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c
obdcreate.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.h
objdict.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/objdict.h
objdict.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/objdict.h
objdict.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/objdict.h
objdict.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/objdict.h
objdict.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/objdict.h
objdict.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/objdict.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.h
oplk/oplk.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c
stdio.h
-
unistd.h
-
errno.h
-
pthread.h
-
signal.h
-
sys/time.h
-
trace/trace.h
-
system.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system.h
xizi.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system.h
oplk/oplk.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/app.c
app.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/app.h
oplk/oplk.h
-
oplk/debugstr.h
-
eventlog/eventlog.h
-
stddef.h
-
stdio.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/app.h
oplk/oplk.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/event.c
event.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/event.h
oplk/oplk.h
-
oplk/debugstr.h
-
console/console.h
-
eventlog/eventlog.h
-
stdio.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/event.h
oplk/oplk.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/main.c
app.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/app.h
event.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/event.h
oplk/oplk.h
-
oplk/debugstr.h
-
system/system.h
-
obdcreate/obdcreate.h
-
getopt/getopt.h
-
unistd.h
-
console/console.h
-
eventlog/eventlog.h
-
netselect/netselect.h
-
stdio.h
-
limits.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c
stdio.h
-
unistd.h
-
fcntl.h
-
xsconfig.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c
stdio.h
-
stdarg.h
-
time.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c
stdio.h
-
stdarg.h
-
trace/trace.h
-

View File

@ -0,0 +1,48 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/app.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/demo_cn_console.dir/src/app.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/event.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/demo_cn_console.dir/src/event.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/main.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/demo_cn_console.dir/src/main.c.obj"
)
set(CMAKE_C_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_C
"CONFIG_INCLUDE_MASND"
"CONFIG_INCLUDE_PDO"
"CONFIG_INCLUDE_SDO_ASND"
"CONFIG_KERNELSTACK_DIRECTLINK"
"NMT_MAX_NODE_ID=0"
"_GNU_SOURCE"
"_POSIX_C_SOURCE=200112L"
"__XIUOS__"
)
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"../../../../stack/include"
"../../../../contrib"
"../../../common/src"
"../../../common/objdicts"
"../../src"
"../../../common/objdicts/CiA401_CN"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,384 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos
# Include any dependencies generated for this target.
include CMakeFiles/demo_cn_console.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/demo_cn_console.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/demo_cn_console.dir/flags.make
CMakeFiles/demo_cn_console.dir/src/main.c.obj: CMakeFiles/demo_cn_console.dir/flags.make
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../src/main.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/demo_cn_console.dir/src/main.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_cn_console.dir/src/main.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/main.c
CMakeFiles/demo_cn_console.dir/src/main.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_cn_console.dir/src/main.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/main.c > CMakeFiles/demo_cn_console.dir/src/main.c.i
CMakeFiles/demo_cn_console.dir/src/main.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_cn_console.dir/src/main.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/main.c -o CMakeFiles/demo_cn_console.dir/src/main.c.s
CMakeFiles/demo_cn_console.dir/src/main.c.obj.requires:
.PHONY : CMakeFiles/demo_cn_console.dir/src/main.c.obj.requires
CMakeFiles/demo_cn_console.dir/src/main.c.obj.provides: CMakeFiles/demo_cn_console.dir/src/main.c.obj.requires
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/src/main.c.obj.provides.build
.PHONY : CMakeFiles/demo_cn_console.dir/src/main.c.obj.provides
CMakeFiles/demo_cn_console.dir/src/main.c.obj.provides.build: CMakeFiles/demo_cn_console.dir/src/main.c.obj
CMakeFiles/demo_cn_console.dir/src/app.c.obj: CMakeFiles/demo_cn_console.dir/flags.make
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../src/app.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/demo_cn_console.dir/src/app.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_cn_console.dir/src/app.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/app.c
CMakeFiles/demo_cn_console.dir/src/app.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_cn_console.dir/src/app.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/app.c > CMakeFiles/demo_cn_console.dir/src/app.c.i
CMakeFiles/demo_cn_console.dir/src/app.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_cn_console.dir/src/app.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/app.c -o CMakeFiles/demo_cn_console.dir/src/app.c.s
CMakeFiles/demo_cn_console.dir/src/app.c.obj.requires:
.PHONY : CMakeFiles/demo_cn_console.dir/src/app.c.obj.requires
CMakeFiles/demo_cn_console.dir/src/app.c.obj.provides: CMakeFiles/demo_cn_console.dir/src/app.c.obj.requires
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/src/app.c.obj.provides.build
.PHONY : CMakeFiles/demo_cn_console.dir/src/app.c.obj.provides
CMakeFiles/demo_cn_console.dir/src/app.c.obj.provides.build: CMakeFiles/demo_cn_console.dir/src/app.c.obj
CMakeFiles/demo_cn_console.dir/src/event.c.obj: CMakeFiles/demo_cn_console.dir/flags.make
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../src/event.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/demo_cn_console.dir/src/event.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_cn_console.dir/src/event.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/event.c
CMakeFiles/demo_cn_console.dir/src/event.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_cn_console.dir/src/event.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/event.c > CMakeFiles/demo_cn_console.dir/src/event.c.i
CMakeFiles/demo_cn_console.dir/src/event.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_cn_console.dir/src/event.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/event.c -o CMakeFiles/demo_cn_console.dir/src/event.c.s
CMakeFiles/demo_cn_console.dir/src/event.c.obj.requires:
.PHONY : CMakeFiles/demo_cn_console.dir/src/event.c.obj.requires
CMakeFiles/demo_cn_console.dir/src/event.c.obj.provides: CMakeFiles/demo_cn_console.dir/src/event.c.obj.requires
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/src/event.c.obj.provides.build
.PHONY : CMakeFiles/demo_cn_console.dir/src/event.c.obj.provides
CMakeFiles/demo_cn_console.dir/src/event.c.obj.provides.build: CMakeFiles/demo_cn_console.dir/src/event.c.obj
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: CMakeFiles/demo_cn_console.dir/flags.make
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c > CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.i
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c -o CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.s
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj.requires:
.PHONY : CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj.requires
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj.provides: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj.requires
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj.provides.build
.PHONY : CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj.provides
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj.provides.build: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: CMakeFiles/demo_cn_console.dir/flags.make
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c > CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.i
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c -o CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.s
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj.requires:
.PHONY : CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj.requires
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj.provides: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj.requires
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj.provides.build
.PHONY : CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj.provides
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj.provides.build: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: CMakeFiles/demo_cn_console.dir/flags.make
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c > CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.i
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c -o CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.s
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj.requires:
.PHONY : CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj.requires
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj.provides: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj.requires
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj.provides.build
.PHONY : CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj.provides
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj.provides.build: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: CMakeFiles/demo_cn_console.dir/flags.make
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c > CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.i
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c -o CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.s
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj.requires:
.PHONY : CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj.requires
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj.provides: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj.requires
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj.provides.build
.PHONY : CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj.provides
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj.provides.build: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj: CMakeFiles/demo_cn_console.dir/flags.make
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c > CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.i
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c -o CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.s
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj.requires:
.PHONY : CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj.requires
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj.provides: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj.requires
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj.provides.build
.PHONY : CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj.provides
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj.provides.build: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: CMakeFiles/demo_cn_console.dir/flags.make
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c > CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.i
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c -o CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.s
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj.requires:
.PHONY : CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj.requires
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj.provides: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj.requires
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj.provides.build
.PHONY : CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj.provides
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj.provides.build: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj: CMakeFiles/demo_cn_console.dir/flags.make
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c > CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.i
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c -o CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.s
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj.requires:
.PHONY : CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj.requires
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj.provides: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj.requires
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj.provides.build
.PHONY : CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj.provides
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj.provides.build: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj: CMakeFiles/demo_cn_console.dir/flags.make
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c > CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.i
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c -o CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.s
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj.requires:
.PHONY : CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj.requires
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj.provides: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj.requires
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj.provides.build
.PHONY : CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj.provides
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj.provides.build: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj
# Object files for target demo_cn_console
demo_cn_console_OBJECTS = \
"CMakeFiles/demo_cn_console.dir/src/main.c.obj" \
"CMakeFiles/demo_cn_console.dir/src/app.c.obj" \
"CMakeFiles/demo_cn_console.dir/src/event.c.obj" \
"CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj" \
"CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj" \
"CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj" \
"CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj" \
"CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj" \
"CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj" \
"CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj" \
"CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj"
# External object files for target demo_cn_console
demo_cn_console_EXTERNAL_OBJECTS =
libdemo_cn_console.a: CMakeFiles/demo_cn_console.dir/src/main.c.obj
libdemo_cn_console.a: CMakeFiles/demo_cn_console.dir/src/app.c.obj
libdemo_cn_console.a: CMakeFiles/demo_cn_console.dir/src/event.c.obj
libdemo_cn_console.a: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj
libdemo_cn_console.a: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj
libdemo_cn_console.a: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj
libdemo_cn_console.a: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj
libdemo_cn_console.a: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj
libdemo_cn_console.a: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj
libdemo_cn_console.a: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj
libdemo_cn_console.a: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj
libdemo_cn_console.a: CMakeFiles/demo_cn_console.dir/build.make
libdemo_cn_console.a: CMakeFiles/demo_cn_console.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Linking C static library libdemo_cn_console.a"
$(CMAKE_COMMAND) -P CMakeFiles/demo_cn_console.dir/cmake_clean_target.cmake
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/demo_cn_console.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/demo_cn_console.dir/build: libdemo_cn_console.a
.PHONY : CMakeFiles/demo_cn_console.dir/build
CMakeFiles/demo_cn_console.dir/requires: CMakeFiles/demo_cn_console.dir/src/main.c.obj.requires
CMakeFiles/demo_cn_console.dir/requires: CMakeFiles/demo_cn_console.dir/src/app.c.obj.requires
CMakeFiles/demo_cn_console.dir/requires: CMakeFiles/demo_cn_console.dir/src/event.c.obj.requires
CMakeFiles/demo_cn_console.dir/requires: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj.requires
CMakeFiles/demo_cn_console.dir/requires: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj.requires
CMakeFiles/demo_cn_console.dir/requires: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj.requires
CMakeFiles/demo_cn_console.dir/requires: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj.requires
CMakeFiles/demo_cn_console.dir/requires: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj.requires
CMakeFiles/demo_cn_console.dir/requires: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj.requires
CMakeFiles/demo_cn_console.dir/requires: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj.requires
CMakeFiles/demo_cn_console.dir/requires: CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj.requires
.PHONY : CMakeFiles/demo_cn_console.dir/requires
CMakeFiles/demo_cn_console.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/demo_cn_console.dir/cmake_clean.cmake
.PHONY : CMakeFiles/demo_cn_console.dir/clean
CMakeFiles/demo_cn_console.dir/depend:
cd /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/demo_cn_console.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/demo_cn_console.dir/depend

View File

@ -0,0 +1,20 @@
file(REMOVE_RECURSE
"CMakeFiles/demo_cn_console.dir/src/main.c.obj"
"CMakeFiles/demo_cn_console.dir/src/app.c.obj"
"CMakeFiles/demo_cn_console.dir/src/event.c.obj"
"CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj"
"CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj"
"CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj"
"CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj"
"CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj"
"CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj"
"CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj"
"CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj"
"libdemo_cn_console.pdb"
"libdemo_cn_console.a"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/demo_cn_console.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@ -0,0 +1,248 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/debugstr.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/debugstr.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
../../../common/objdicts/CiA401_CN/objdict.h
../../../common/src/obdcreate/obdmacro.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj
../../../../contrib/trace/trace.h
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj
../../../../contrib/trace/trace.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c
CMakeFiles/demo_cn_console.dir/src/app.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/debugstr.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
../../../common/src/eventlog/eventlog.h
../../../common/src/eventlog/eventlogstring.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/app.c
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/app.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj
../../../../contrib/console/console.h
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/debugstr.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
../../../common/src/eventlog/eventlog.h
../../../common/src/eventlog/eventlogstring.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/event.c
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/event.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj
../../../../contrib/console/console.h
../../../../contrib/getopt/getopt.h
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/debugstr.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
../../../common/src/eventlog/eventlog.h
../../../common/src/eventlog/eventlogstring.h
../../../common/src/netselect/netselect.h
../../../common/src/obdcreate/obdcreate.h
../../../common/src/system/system.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/app.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/event.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/src/main.c

View File

@ -0,0 +1,248 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/debugstr.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/debugstr.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../common/objdicts/CiA401_CN/objdict.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../common/src/obdcreate/obdmacro.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../contrib/trace/trace.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj: ../../../../contrib/trace/trace.h
CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/debugstr.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../common/src/eventlog/eventlog.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../../common/src/eventlog/eventlogstring.h
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../src/app.c
CMakeFiles/demo_cn_console.dir/src/app.c.obj: ../../src/app.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../contrib/console/console.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/debugstr.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../common/src/eventlog/eventlog.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../../common/src/eventlog/eventlogstring.h
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../src/event.c
CMakeFiles/demo_cn_console.dir/src/event.c.obj: ../../src/event.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../contrib/console/console.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../contrib/getopt/getopt.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/debugstr.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../common/src/eventlog/eventlog.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../common/src/eventlog/eventlogstring.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../common/src/netselect/netselect.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../common/src/obdcreate/obdcreate.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../../common/src/system/system.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../src/app.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../src/event.h
CMakeFiles/demo_cn_console.dir/src/main.c.obj: ../../src/main.c

View File

@ -0,0 +1,2 @@
/usr/bin/arm-none-eabi-ar qc libdemo_cn_console.a CMakeFiles/demo_cn_console.dir/src/main.c.obj CMakeFiles/demo_cn_console.dir/src/app.c.obj CMakeFiles/demo_cn_console.dir/src/event.c.obj CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj
/usr/bin/arm-none-eabi-ranlib libdemo_cn_console.a

View File

@ -0,0 +1,13 @@
CMAKE_PROGRESS_1 = 1
CMAKE_PROGRESS_2 = 2
CMAKE_PROGRESS_3 = 3
CMAKE_PROGRESS_4 = 4
CMAKE_PROGRESS_5 = 5
CMAKE_PROGRESS_6 = 6
CMAKE_PROGRESS_7 = 7
CMAKE_PROGRESS_8 = 8
CMAKE_PROGRESS_9 = 9
CMAKE_PROGRESS_10 = 10
CMAKE_PROGRESS_11 = 11
CMAKE_PROGRESS_12 = 12

View File

@ -0,0 +1,34 @@
const char features[] = {"\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304
"1"
#else
"0"
#endif
"c_function_prototypes\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
"1"
#else
"0"
#endif
"c_restrict\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L
"1"
#else
"0"
#endif
"c_static_assert\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
"1"
#else
"0"
#endif
"c_variadic_macros\n"
};
int main(int argc, char** argv) { (void)argv; return features[argc]; }

View File

@ -0,0 +1,528 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# The main all target
all: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles/progress.marks
$(MAKE) -f CMakeFiles/Makefile2 all
$(CMAKE_COMMAND) -E cmake_progress_start /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
$(MAKE) -f CMakeFiles/Makefile2 clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
$(MAKE) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
$(MAKE) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall/fast
# clear depends
depend:
$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
#=============================================================================
# Target rules for targets named demo_cn_console
# Build rule for target.
demo_cn_console: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 demo_cn_console
.PHONY : demo_cn_console
# fast build rule for target.
demo_cn_console/fast:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/build
.PHONY : demo_cn_console/fast
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.i:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.s:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.i:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.s:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.i:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.s:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.i:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.s:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.i:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.s:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.i:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.s:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.i:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.s:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.i:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.s:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.s
src/app.obj: src/app.c.obj
.PHONY : src/app.obj
# target to build an object file
src/app.c.obj:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/src/app.c.obj
.PHONY : src/app.c.obj
src/app.i: src/app.c.i
.PHONY : src/app.i
# target to preprocess a source file
src/app.c.i:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/src/app.c.i
.PHONY : src/app.c.i
src/app.s: src/app.c.s
.PHONY : src/app.s
# target to generate assembly for a file
src/app.c.s:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/src/app.c.s
.PHONY : src/app.c.s
src/event.obj: src/event.c.obj
.PHONY : src/event.obj
# target to build an object file
src/event.c.obj:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/src/event.c.obj
.PHONY : src/event.c.obj
src/event.i: src/event.c.i
.PHONY : src/event.i
# target to preprocess a source file
src/event.c.i:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/src/event.c.i
.PHONY : src/event.c.i
src/event.s: src/event.c.s
.PHONY : src/event.s
# target to generate assembly for a file
src/event.c.s:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/src/event.c.s
.PHONY : src/event.c.s
src/main.obj: src/main.c.obj
.PHONY : src/main.obj
# target to build an object file
src/main.c.obj:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/src/main.c.obj
.PHONY : src/main.c.obj
src/main.i: src/main.c.i
.PHONY : src/main.i
# target to preprocess a source file
src/main.c.i:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/src/main.c.i
.PHONY : src/main.c.i
src/main.s: src/main.c.s
.PHONY : src/main.s
# target to generate assembly for a file
src/main.c.s:
$(MAKE) -f CMakeFiles/demo_cn_console.dir/build.make CMakeFiles/demo_cn_console.dir/src/main.c.s
.PHONY : src/main.c.s
# Help Target
help:
@echo "The following are some of the valid targets for this Makefile:"
@echo "... all (the default if no target is provided)"
@echo "... clean"
@echo "... depend"
@echo "... install/strip"
@echo "... edit_cache"
@echo "... demo_cn_console"
@echo "... install"
@echo "... rebuild_cache"
@echo "... list_install_components"
@echo "... install/local"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.s"
@echo "... src/app.obj"
@echo "... src/app.i"
@echo "... src/app.s"
@echo "... src/event.obj"
@echo "... src/event.i"
@echo "... src/event.s"
@echo "... src/main.obj"
@echo "... src/main.i"
@echo "... src/main.s"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@ -0,0 +1,52 @@
# Install script for directory: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/../../bin/xiuos/arm")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "Release")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/demo_cn_console" TYPE PROGRAM FILES "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/../../tools/linux/set_prio")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/demo_cn_console" TYPE STATIC_LIBRARY FILES "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/libdemo_cn_console.a")
endif()
if(CMAKE_INSTALL_COMPONENT)
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
else()
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
file(WRITE "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/build/xiuos/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")

View File

@ -0,0 +1,2 @@
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/../../bin/xiuos/arm/demo_cn_console/set_prio
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_cn_console/../../bin/xiuos/arm/demo_cn_console/libdemo_cn_console.a

View File

@ -0,0 +1,73 @@
set(CMAKE_C_COMPILER "/usr/bin/arm-none-eabi-gcc")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "6.3.1")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
set(CMAKE_C_COMPILE_FEATURES "")
set(CMAKE_C90_COMPILE_FEATURES "")
set(CMAKE_C99_COMPILE_FEATURES "")
set(CMAKE_C11_COMPILE_FEATURES "")
set(CMAKE_C_PLATFORM_ID "")
set(CMAKE_C_SIMULATE_ID "")
set(CMAKE_C_SIMULATE_VERSION "")
set(CMAKE_AR "/usr/bin/arm-none-eabi-ar")
set(CMAKE_C_COMPILER_AR "/usr/bin/arm-none-eabi-gcc-ar")
set(CMAKE_RANLIB "/usr/bin/arm-none-eabi-ranlib")
set(CMAKE_C_COMPILER_RANLIB "/usr/bin/arm-none-eabi-gcc-ranlib")
set(CMAKE_LINKER "/usr/bin/arm-none-eabi-ld")
set(CMAKE_COMPILER_IS_GNUCC 1)
set(CMAKE_C_COMPILER_LOADED 1)
set(CMAKE_C_COMPILER_WORKS TRUE)
set(CMAKE_C_ABI_COMPILED FALSE)
set(CMAKE_COMPILER_IS_MINGW )
set(CMAKE_COMPILER_IS_CYGWIN )
if(CMAKE_COMPILER_IS_CYGWIN)
set(CYGWIN 1)
set(UNIX 1)
endif()
set(CMAKE_C_COMPILER_ENV_VAR "CC")
if(CMAKE_COMPILER_IS_MINGW)
set(MINGW 1)
endif()
set(CMAKE_C_COMPILER_ID_RUN 1)
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_C_LINKER_PREFERENCE 10)
# Save compiler ABI information.
set(CMAKE_C_SIZEOF_DATA_PTR "")
set(CMAKE_C_COMPILER_ABI "")
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
if(CMAKE_C_SIZEOF_DATA_PTR)
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
endif()
if(CMAKE_C_COMPILER_ABI)
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
endif()
if(CMAKE_C_LIBRARY_ARCHITECTURE)
set(CMAKE_LIBRARY_ARCHITECTURE "")
endif()
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
endif()
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -0,0 +1,15 @@
set(CMAKE_HOST_SYSTEM "Linux-5.16.15-arch1-1")
set(CMAKE_HOST_SYSTEM_NAME "Linux")
set(CMAKE_HOST_SYSTEM_VERSION "5.16.15-arch1-1")
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
include("/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/cmake/toolchain-xiuos-arm-none-eabi-gnu.cmake")
set(CMAKE_SYSTEM "XiUOS")
set(CMAKE_SYSTEM_NAME "XiUOS")
set(CMAKE_SYSTEM_VERSION "")
set(CMAKE_SYSTEM_PROCESSOR "arm")
set(CMAKE_CROSSCOMPILING "TRUE")
set(CMAKE_SYSTEM_LOADED 1)

View File

@ -0,0 +1,598 @@
#ifdef __cplusplus
# error "A C++ compiler has been selected for C."
#endif
#if defined(__18CXX)
# define ID_VOID_MAIN
#endif
#if defined(__CLASSIC_C__)
/* cv-qualifiers did not exist in K&R C */
# define const
# define volatile
#endif
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
#if defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
/* __INTEL_COMPILER = VRP */
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
# endif
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
# define COMPILER_ID "Embarcadero"
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
#elif defined(__BORLANDC__)
# define COMPILER_ID "Borland"
/* __BORLANDC__ = 0xVRR */
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
# define COMPILER_ID "Watcom"
/* __WATCOMC__ = VVRR */
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__WATCOMC__)
# define COMPILER_ID "OpenWatcom"
/* __WATCOMC__ = VVRP + 1100 */
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__SUNPRO_C)
# define COMPILER_ID "SunPro"
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# endif
#elif defined(__HP_cc)
# define COMPILER_ID "HP"
/* __HP_cc = VVRRPP */
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
#elif defined(__DECC)
# define COMPILER_ID "Compaq"
/* __DECC_VER = VVRRTPPPP */
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
# define COMPILER_ID "XL"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
# define COMPILER_ID "VisualAge"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__PGI)
# define COMPILER_ID "PGI"
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
# endif
#elif defined(_CRAYC)
# define COMPILER_ID "Cray"
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
#elif defined(__TI_COMPILER_VERSION__)
# define COMPILER_ID "TI"
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
# define COMPILER_ID "Fujitsu"
#elif defined(__TINYC__)
# define COMPILER_ID "TinyCC"
#elif defined(__BCC__)
# define COMPILER_ID "Bruce"
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#elif defined(__clang__) && defined(__apple_build_version__)
# define COMPILER_ID "AppleClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
#elif defined(__clang__)
# define COMPILER_ID "Clang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
#elif defined(__GNUC__)
# define COMPILER_ID "GNU"
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
# if defined(__GNUC_MINOR__)
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(_MSC_VER)
# define COMPILER_ID "MSVC"
/* _MSC_VER = VVRR */
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
# endif
#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
# define COMPILER_ID "ADSP"
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif
#elif defined(__ARMCC_VERSION)
# define COMPILER_ID "ARMCC"
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
# define COMPILER_ID "SDCC"
# if defined(__SDCC_VERSION_MAJOR)
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
# else
/* SDCC = VRP */
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
# endif
#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
# define COMPILER_ID "MIPSpro"
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10)
# endif
/* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that
it is the native compiler. */
#elif defined(__sgi)
# define COMPILER_ID "MIPSpro"
#elif defined(__hpux) || defined(__hpua)
# define COMPILER_ID "HP"
#else /* unknown compiler */
# define COMPILER_ID ""
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
#ifdef SIMULATE_ID
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
#endif
#ifdef __QNXNTO__
char const* qnxnto = "INFO" ":" "qnxnto[]";
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#endif
#define STRINGIFY_HELPER(X) #X
#define STRINGIFY(X) STRINGIFY_HELPER(X)
/* Identify known platforms by name. */
#if defined(__linux) || defined(__linux__) || defined(linux)
# define PLATFORM_ID "Linux"
#elif defined(__CYGWIN__)
# define PLATFORM_ID "Cygwin"
#elif defined(__MINGW32__)
# define PLATFORM_ID "MinGW"
#elif defined(__APPLE__)
# define PLATFORM_ID "Darwin"
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
# define PLATFORM_ID "Windows"
#elif defined(__FreeBSD__) || defined(__FreeBSD)
# define PLATFORM_ID "FreeBSD"
#elif defined(__NetBSD__) || defined(__NetBSD)
# define PLATFORM_ID "NetBSD"
#elif defined(__OpenBSD__) || defined(__OPENBSD)
# define PLATFORM_ID "OpenBSD"
#elif defined(__sun) || defined(sun)
# define PLATFORM_ID "SunOS"
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
# define PLATFORM_ID "AIX"
#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
# define PLATFORM_ID "IRIX"
#elif defined(__hpux) || defined(__hpux__)
# define PLATFORM_ID "HP-UX"
#elif defined(__HAIKU__)
# define PLATFORM_ID "Haiku"
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
# define PLATFORM_ID "BeOS"
#elif defined(__QNX__) || defined(__QNXNTO__)
# define PLATFORM_ID "QNX"
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
# define PLATFORM_ID "Tru64"
#elif defined(__riscos) || defined(__riscos__)
# define PLATFORM_ID "RISCos"
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
# define PLATFORM_ID "SINIX"
#elif defined(__UNIX_SV__)
# define PLATFORM_ID "UNIX_SV"
#elif defined(__bsdos__)
# define PLATFORM_ID "BSDOS"
#elif defined(_MPRAS) || defined(MPRAS)
# define PLATFORM_ID "MP-RAS"
#elif defined(__osf) || defined(__osf__)
# define PLATFORM_ID "OSF1"
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
# define PLATFORM_ID "SCO_SV"
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
# define PLATFORM_ID "ULTRIX"
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
# define PLATFORM_ID "Xenix"
#elif defined(__WATCOMC__)
# if defined(__LINUX__)
# define PLATFORM_ID "Linux"
# elif defined(__DOS__)
# define PLATFORM_ID "DOS"
# elif defined(__OS2__)
# define PLATFORM_ID "OS2"
# elif defined(__WINDOWS__)
# define PLATFORM_ID "Windows3x"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#else /* unknown platform */
# define PLATFORM_ID
#endif
/* For windows compilers MSVC and Intel we can determine
the architecture of the compiler being used. This is because
the compilers do not have flags that can change the architecture,
but rather depend on which compiler is being used
*/
#if defined(_WIN32) && defined(_MSC_VER)
# if defined(_M_IA64)
# define ARCHITECTURE_ID "IA64"
# elif defined(_M_X64) || defined(_M_AMD64)
# define ARCHITECTURE_ID "x64"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# elif defined(_M_ARM64)
# define ARCHITECTURE_ID "ARM64"
# elif defined(_M_ARM)
# if _M_ARM == 4
# define ARCHITECTURE_ID "ARMV4I"
# elif _M_ARM == 5
# define ARCHITECTURE_ID "ARMV5I"
# else
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
# endif
# elif defined(_M_MIPS)
# define ARCHITECTURE_ID "MIPS"
# elif defined(_M_SH)
# define ARCHITECTURE_ID "SHx"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__WATCOMC__)
# if defined(_M_I86)
# define ARCHITECTURE_ID "I86"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#else
# define ARCHITECTURE_ID
#endif
/* Convert integer to decimal digit literals. */
#define DEC(n) \
('0' + (((n) / 10000000)%10)), \
('0' + (((n) / 1000000)%10)), \
('0' + (((n) / 100000)%10)), \
('0' + (((n) / 10000)%10)), \
('0' + (((n) / 1000)%10)), \
('0' + (((n) / 100)%10)), \
('0' + (((n) / 10)%10)), \
('0' + ((n) % 10))
/* Convert integer to hex digit literals. */
#define HEX(n) \
('0' + ((n)>>28 & 0xF)), \
('0' + ((n)>>24 & 0xF)), \
('0' + ((n)>>20 & 0xF)), \
('0' + ((n)>>16 & 0xF)), \
('0' + ((n)>>12 & 0xF)), \
('0' + ((n)>>8 & 0xF)), \
('0' + ((n)>>4 & 0xF)), \
('0' + ((n) & 0xF))
/* Construct a string literal encoding the version number components. */
#ifdef COMPILER_VERSION_MAJOR
char const info_version[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
COMPILER_VERSION_MAJOR,
# ifdef COMPILER_VERSION_MINOR
'.', COMPILER_VERSION_MINOR,
# ifdef COMPILER_VERSION_PATCH
'.', COMPILER_VERSION_PATCH,
# ifdef COMPILER_VERSION_TWEAK
'.', COMPILER_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct a string literal encoding the internal version number. */
#ifdef COMPILER_VERSION_INTERNAL
char const info_version_internal[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
'i','n','t','e','r','n','a','l','[',
COMPILER_VERSION_INTERNAL,']','\0'};
#endif
/* Construct a string literal encoding the version number components. */
#ifdef SIMULATE_VERSION_MAJOR
char const info_simulate_version[] = {
'I', 'N', 'F', 'O', ':',
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
SIMULATE_VERSION_MAJOR,
# ifdef SIMULATE_VERSION_MINOR
'.', SIMULATE_VERSION_MINOR,
# ifdef SIMULATE_VERSION_PATCH
'.', SIMULATE_VERSION_PATCH,
# ifdef SIMULATE_VERSION_TWEAK
'.', SIMULATE_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
#if !defined(__STDC__)
# if defined(_MSC_VER) && !defined(__clang__)
# define C_DIALECT "90"
# else
# define C_DIALECT
# endif
#elif __STDC_VERSION__ >= 201000L
# define C_DIALECT "11"
#elif __STDC_VERSION__ >= 199901L
# define C_DIALECT "99"
#else
# define C_DIALECT "90"
#endif
const char* info_language_dialect_default =
"INFO" ":" "dialect_default[" C_DIALECT "]";
/*--------------------------------------------------------------------------*/
#ifdef ID_VOID_MAIN
void main() {}
#else
# if defined(__CLASSIC_C__)
int main(argc, argv) int argc; char *argv[];
# else
int main(int argc, char* argv[])
# endif
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
require += info_arch[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#ifdef COMPILER_VERSION_INTERNAL
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
require += info_cray[argc];
#endif
require += info_language_dialect_default[argc];
(void)argv;
return require;
}
#endif

View File

@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

View File

@ -0,0 +1,2 @@
# Hashes of file build rules.
89b5858e896c558b9ce461b50b39d052 mnobd.cdc

View File

@ -0,0 +1,100 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
# The generator used is:
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
# The top level Makefile was generated from the following files:
set(CMAKE_MAKEFILE_DEPENDS
"CMakeCache.txt"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/cmake/configure-xiuos.cmake"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/cmake/findoplklib.cmake"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/cmake/firmwaremanager.cmake"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/cmake/linkoplklib.cmake"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/cmake/options.cmake"
"../../CMakeLists.txt"
"CMakeFiles/3.10.2/CMakeCCompiler.cmake"
"CMakeFiles/3.10.2/CMakeSystem.cmake"
"CMakeFiles/feature_tests.c"
"../../xiuos.cmake"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/cmake/toolchain-xiuos-arm-none-eabi-gnu.cmake"
"/usr/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in"
"/usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c"
"/usr/share/cmake-3.10/Modules/CMakeCInformation.cmake"
"/usr/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake"
"/usr/share/cmake-3.10/Modules/CMakeCompilerIdDetection.cmake"
"/usr/share/cmake-3.10/Modules/CMakeDependentOption.cmake"
"/usr/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake"
"/usr/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake"
"/usr/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake"
"/usr/share/cmake-3.10/Modules/CMakeDetermineCompilerId.cmake"
"/usr/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake"
"/usr/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake"
"/usr/share/cmake-3.10/Modules/CMakeGenericSystem.cmake"
"/usr/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake"
"/usr/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake"
"/usr/share/cmake-3.10/Modules/CMakeSystem.cmake.in"
"/usr/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake"
"/usr/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake"
"/usr/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake"
"/usr/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake"
"/usr/share/cmake-3.10/Modules/CMakeUnixFindMake.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/ADSP-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Borland-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Cray-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/GHS-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/GNU-C-FeatureTests.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/GNU-C.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/GNU-FindBinUtils.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/GNU.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/HP-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/IAR-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Intel-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/MIPSpro-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/MSVC-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/PGI-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/PathScale-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/SCO-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/TI-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/Watcom-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/XL-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
"/usr/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake"
)
# The corresponding makefile is:
set(CMAKE_MAKEFILE_OUTPUTS
"Makefile"
"CMakeFiles/cmake.check_cache"
)
# Byproducts of CMake generate step:
set(CMAKE_MAKEFILE_PRODUCTS
"CMakeFiles/3.10.2/CMakeSystem.cmake"
"CMakeFiles/3.10.2/CMakeCCompiler.cmake"
"CMakeFiles/3.10.2/CMakeCCompiler.cmake"
"CMakeFiles/CMakeDirectoryInformation.cmake"
)
# Dependency information for all targets:
set(CMAKE_DEPEND_INFO_FILES
"CMakeFiles/demo_mn_console.dir/DependInfo.cmake"
)

View File

@ -0,0 +1,108 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# The main recursive all target
all:
.PHONY : all
# The main recursive preinstall target
preinstall:
.PHONY : preinstall
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos
#=============================================================================
# Target rules for target CMakeFiles/demo_mn_console.dir
# All Build rule for target.
CMakeFiles/demo_mn_console.dir/all:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/depend
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 "Built target demo_mn_console"
.PHONY : CMakeFiles/demo_mn_console.dir/all
# Include target in all.
all: CMakeFiles/demo_mn_console.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
CMakeFiles/demo_mn_console.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles 20
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/demo_mn_console.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles 0
.PHONY : CMakeFiles/demo_mn_console.dir/rule
# Convenience name for target.
demo_mn_console: CMakeFiles/demo_mn_console.dir/rule
.PHONY : demo_mn_console
# clean rule for target.
CMakeFiles/demo_mn_console.dir/clean:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/clean
.PHONY : CMakeFiles/demo_mn_console.dir/clean
# clean rule for target.
clean: CMakeFiles/demo_mn_console.dir/clean
.PHONY : clean
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@ -0,0 +1,7 @@
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/install/strip.dir
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/edit_cache.dir
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/list_install_components.dir
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/install/local.dir
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/rebuild_cache.dir
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/install.dir

View File

@ -0,0 +1 @@
# This file is generated by cmake for dependency checking of the CMakeCache.txt file

View File

@ -0,0 +1,590 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
../../../../contrib/console/console.h
../../../../contrib/getopt/getopt.h
../../../../contrib/trace/trace.h
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
oplk/oplkinc.h
-
../../../../stack/include/oplk/debugstr.h
oplk/oplk.h
-
oplk/event.h
-
oplk/nmt.h
-
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
oplk/oplkinc.h
-
oplk/nmt.h
-
../../../../stack/include/oplk/frame.h
oplk/oplkinc.h
-
../../../../stack/include/oplk/nmt.h
oplk/oplkinc.h
-
../../../../stack/include/oplk/obd.h
oplk/oplkinc.h
-
oplk/sdo.h
-
../../../../stack/include/oplk/obdal.h
oplk/oplkinc.h
-
../../../../stack/include/oplk/oplk.h
oplk/oplkinc.h
-
oplk/frame.h
-
oplk/sdo.h
-
oplk/obd.h
-
oplk/obdal.h
-
oplk/cfm.h
-
oplk/event.h
-
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
oplk/targetsystem.h
-
oplk/oplkdefs.h
-
oplk/errordefs.h
-
oplk/version.h
-
../../../../stack/include/oplk/sdo.h
oplk/oplkinc.h
-
oplk/sdoabortcodes.h
-
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
stdlib.h
-
stdio.h
-
string.h
-
stdint.h
-
oplk/basictypes.h
-
socal/socal.h
-
alt_cache.h
-
../../../../stack/include/oplk/targetdefs/linux.h
stdlib.h
-
stdio.h
-
string.h
-
semaphore.h
-
linux/module.h
-
linux/kernel.h
-
linux/init.h
-
linux/errno.h
-
linux/major.h
-
linux/version.h
-
linux/slab.h
-
oplk/basictypes.h
-
../../../../stack/include/oplk/targetdefs/microblaze.h
stdlib.h
-
stdio.h
-
string.h
-
xil_types.h
-
xil_io.h
-
xil_cache.h
-
mb_interface.h
-
mb_uart.h
-
oplk/basictypes.h
-
../../../../stack/include/oplk/targetdefs/nios2.h
stdlib.h
-
stdio.h
-
string.h
-
alt_types.h
-
io.h
-
system.h
-
oplk/basictypes.h
-
altera_vic_regs.h
-
../../../../stack/include/oplk/targetdefs/vxworks.h
stdlib.h
-
stdio.h
-
string.h
-
oplk/basictypes.h
-
../../../../stack/include/oplk/targetdefs/wince.h
oplk/basictypes.h
-
../../../../stack/include/oplk/targetdefs/windows-mingw.h
stdlib.h
-
stdio.h
-
string.h
-
Windows.h
-
oplk/basictypes.h
-
../../../../stack/include/oplk/targetdefs/windows.h
stdlib.h
-
stdio.h
-
string.h
-
Windows.h
-
oplk/basictypes.h
-
../../../../stack/include/oplk/targetdefs/winkernel.h
stdlib.h
-
stdio.h
-
string.h
-
ntdef.h
-
ndis.h
-
oplk/basictypes.h
-
../../../../stack/include/oplk/targetsystem.h
oplk/targetdefs/linux.h
-
oplk/targetdefs/vxworks.h
-
oplk/targetdefs/nios2.h
-
oplk/targetdefs/microblaze.h
-
oplk/targetdefs/c5socarm.h
-
oplk/targetdefs/winkernel.h
-
oplk/targetdefs/windows.h
-
oplk/targetdefs/windows-mingw.h
-
oplk/targetdefs/wince.h
-
../../../../stack/include/oplk/version.h
../../../common/objdicts/CiA302-4_MN/obdpi.h
oplk/oplk.h
-
../../../common/objdicts/CiA302-4_MN/objdict.h
obdcreate/obdmacro.h
-
limits.h
-
obdcreate/obdmacro.h
-
../../../common/src/eventlog/eventlog.h
oplk/oplk.h
-
oplk/nmt.h
-
eventlogstring.h
../../../common/src/eventlog/eventlogstring.h
../../../common/src/eventlog/eventlogstring.h
oplk/oplk.h
-
oplk/nmt.h
-
stdarg.h
-
../../../common/src/firmwaremanager/firmwarecheck.h
oplk/oplk.h
-
firmwaremanager/firmwaremanager.h
-
firmwaremanager/firmwareinfo.h
-
../../../common/src/firmwaremanager/firmwareinfo.h
firmwaremanager/firmwaremanager.h
-
firmwaremanager/firmwareinfodecode.h
-
firmwaremanager/firmwarestore.h
-
oplk/oplk.h
-
../../../common/src/firmwaremanager/firmwareinfodecode.h
firmwaremanager/firmwaremanager.h
-
firmwaremanager/firmwarestore.h
-
oplk/oplk.h
-
../../../common/src/firmwaremanager/firmwaremanager.h
oplk/oplk.h
-
../../../common/src/firmwaremanager/firmwarestore.h
firmwaremanager/firmwaremanager.h
-
oplk/oplk.h
-
../../../common/src/firmwaremanager/firmwaretrace.h
stdio.h
-
../../../common/src/firmwaremanager/firmwareupdate.h
firmwaremanager/firmwaremanager.h
-
firmwaremanager/firmwareinfodecode.h
-
oplk/oplk.h
-
../../../common/src/netselect/netselect.h
../../../common/src/obdcreate/obdcreate.h
oplk/oplk.h
-
../../../common/src/obdcreate/obdmacro.h
../../../common/src/system/system.h
oplk/oplk.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c
obdpi.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.h
oplk/oplk.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c
eventlog.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.h
oplk/debugstr.h
-
stdio.h
-
time.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.h
oplk/oplk.h
-
oplk/nmt.h
-
eventlogstring.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c
eventlogstring.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.h
oplk/debugstr.h
-
stdio.h
-
time.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.h
oplk/oplk.h
-
oplk/nmt.h
-
stdarg.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c
firmwaremanager/firmwaretrace.h
-
firmwaremanager/firmwarecheck.h
-
firmwaremanager/firmwareupdate.h
-
firmwaremanager/firmwareinfo.h
-
oplk/oplk.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c
firmwaremanager/firmwareinfo.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c
firmwaremanager/firmwareinfodecode.h
-
firmwaremanager/firmwarestore.h
-
string.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c
firmwaremanager/firmwaremanager.h
-
firmwaremanager/firmwaretrace.h
-
firmwaremanager/firmwarestore.h
-
firmwaremanager/firmwareinfo.h
-
firmwaremanager/firmwarecheck.h
-
firmwaremanager/firmwareupdate.h
-
oplk/oplk.h
-
oplk/debugstr.h
-
stdio.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c
firmwaremanager/firmwarestore.h
-
stdio.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c
firmwaremanager/firmwaretrace.h
-
firmwaremanager/firmwareupdate.h
-
firmwaremanager/firmwarestore.h
-
oplk/oplk.h
-
stdio.h
-
errno.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c
oplk/oplk.h
-
netselect.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.h
stdio.h
-
string.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c
obdcreate.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.h
objdict.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/objdict.h
objdict.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/objdict.h
objdict.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/objdict.h
objdict.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/objdict.h
objdict.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/objdict.h
objdict.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/objdict.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.h
oplk/oplk.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c
stdio.h
-
unistd.h
-
errno.h
-
pthread.h
-
signal.h
-
sys/time.h
-
trace/trace.h
-
system.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system.h
xizi.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system.h
oplk/oplk.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/app.c
app.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/app.h
oplk/oplk.h
-
oplk/debugstr.h
-
obdpi.h
-
eventlog/eventlog.h
-
xap.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/xap.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/app.h
oplk/oplk.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/event.c
event.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/event.h
oplk/oplk.h
-
oplk/debugstr.h
-
console/console.h
-
eventlog/eventlog.h
-
stdio.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/event.h
oplk/oplk.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/main.c
app.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/app.h
event.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/event.h
oplk/oplk.h
-
oplk/debugstr.h
-
system/system.h
-
obdcreate/obdcreate.h
-
getopt/getopt.h
-
unistd.h
-
console/console.h
-
eventlog/eventlog.h
-
firmwaremanager/firmwaremanager.h
-
netselect/netselect.h
-
stdio.h
-
limits.h
-
string.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/xap.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c
stdio.h
-
unistd.h
-
fcntl.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c
stdio.h
-
stdarg.h
-
time.h
-
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c
stdio.h
-
stdarg.h
-
trace/trace.h
-

View File

@ -0,0 +1,55 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/app.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/src/app.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/event.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/src/event.c.obj"
"/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/main.c" "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/src/main.c.obj"
)
set(CMAKE_C_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_C
"CONFIG_INCLUDE_CFM"
"CONFIG_INCLUDE_PDO"
"CONFIG_INCLUDE_SDO_ASND"
"CONFIG_KERNELSTACK_DIRECTLINK"
"NMT_MAX_NODE_ID=254"
"_GNU_SOURCE"
"_POSIX_C_SOURCE=200112L"
"__XIUOS__"
)
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"../../../../stack/include"
"../../../../contrib"
"../../../common/src"
"../../../common/objdicts"
"../../src"
"../../../common/objdicts/CiA302-4_MN"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,577 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos
# Include any dependencies generated for this target.
include CMakeFiles/demo_mn_console.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/demo_mn_console.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/demo_mn_console.dir/flags.make
mnobd.cdc: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/openCONFIGURATOR_projects/Demo_3CN/output/mnobd.cdc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating mnobd.cdc"
/usr/bin/cmake -E copy /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/../common/openCONFIGURATOR_projects/Demo_3CN/output/mnobd.cdc /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/mnobd.cdc
CMakeFiles/demo_mn_console.dir/src/main.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../src/main.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/demo_mn_console.dir/src/main.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/src/main.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/main.c
CMakeFiles/demo_mn_console.dir/src/main.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/src/main.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/main.c > CMakeFiles/demo_mn_console.dir/src/main.c.i
CMakeFiles/demo_mn_console.dir/src/main.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/src/main.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/main.c -o CMakeFiles/demo_mn_console.dir/src/main.c.s
CMakeFiles/demo_mn_console.dir/src/main.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/src/main.c.obj.requires
CMakeFiles/demo_mn_console.dir/src/main.c.obj.provides: CMakeFiles/demo_mn_console.dir/src/main.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/src/main.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/src/main.c.obj.provides
CMakeFiles/demo_mn_console.dir/src/main.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/src/main.c.obj
CMakeFiles/demo_mn_console.dir/src/app.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../src/app.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/demo_mn_console.dir/src/app.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/src/app.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/app.c
CMakeFiles/demo_mn_console.dir/src/app.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/src/app.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/app.c > CMakeFiles/demo_mn_console.dir/src/app.c.i
CMakeFiles/demo_mn_console.dir/src/app.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/src/app.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/app.c -o CMakeFiles/demo_mn_console.dir/src/app.c.s
CMakeFiles/demo_mn_console.dir/src/app.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/src/app.c.obj.requires
CMakeFiles/demo_mn_console.dir/src/app.c.obj.provides: CMakeFiles/demo_mn_console.dir/src/app.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/src/app.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/src/app.c.obj.provides
CMakeFiles/demo_mn_console.dir/src/app.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/src/app.c.obj
CMakeFiles/demo_mn_console.dir/src/event.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../src/event.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/demo_mn_console.dir/src/event.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/src/event.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/event.c
CMakeFiles/demo_mn_console.dir/src/event.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/src/event.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/event.c > CMakeFiles/demo_mn_console.dir/src/event.c.i
CMakeFiles/demo_mn_console.dir/src/event.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/src/event.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/event.c -o CMakeFiles/demo_mn_console.dir/src/event.c.s
CMakeFiles/demo_mn_console.dir/src/event.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/src/event.c.obj.requires
CMakeFiles/demo_mn_console.dir/src/event.c.obj.provides: CMakeFiles/demo_mn_console.dir/src/event.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/src/event.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/src/event.c.obj.provides
CMakeFiles/demo_mn_console.dir/src/event.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/src/event.c.obj
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c > CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.i
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.s
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj.requires
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj.provides: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj.provides
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c > CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.i
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.s
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj.requires
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj.provides: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj.provides
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c > CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.i
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.s
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj.requires
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj.provides: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj.provides
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c > CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.i
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.s
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj.requires
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj.provides: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj.provides
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c > CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.i
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.s
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj.requires
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj.provides: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj.provides
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c > CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.i
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.s
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj.requires
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj.provides: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj.provides
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c > CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.i
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.s
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj.requires
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj.provides: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj.provides
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c > CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.i
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.s
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj.requires
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj.provides: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj.provides
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c > CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.i
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.s
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj.requires
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj.provides: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj.provides
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c > CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.i
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.s
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj.requires
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj.provides: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj.provides
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c > CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.i
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.s
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj.requires
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj.provides: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj.provides
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c > CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.i
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.s
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj.requires
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj.provides: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj.provides
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building C object CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c > CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.i
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.s
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj.requires
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj.provides: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj.provides
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building C object CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c > CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.i
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.s
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj.requires
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj.provides: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj.provides
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj: CMakeFiles/demo_mn_console.dir/flags.make
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building C object CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj -c /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c > CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.i
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c -o CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.s
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj.requires:
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj.requires
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj.provides: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj.requires
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj.provides.build
.PHONY : CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj.provides
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj.provides.build: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj
# Object files for target demo_mn_console
demo_mn_console_OBJECTS = \
"CMakeFiles/demo_mn_console.dir/src/main.c.obj" \
"CMakeFiles/demo_mn_console.dir/src/app.c.obj" \
"CMakeFiles/demo_mn_console.dir/src/event.c.obj" \
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj" \
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj" \
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj" \
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj" \
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj" \
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj" \
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj" \
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj" \
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj" \
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj" \
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj" \
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj" \
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj" \
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj" \
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj"
# External object files for target demo_mn_console
demo_mn_console_EXTERNAL_OBJECTS =
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/src/main.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/src/app.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/src/event.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/build.make
libdemo_mn_console.a: CMakeFiles/demo_mn_console.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Linking C static library libdemo_mn_console.a"
$(CMAKE_COMMAND) -P CMakeFiles/demo_mn_console.dir/cmake_clean_target.cmake
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/demo_mn_console.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/demo_mn_console.dir/build: libdemo_mn_console.a
.PHONY : CMakeFiles/demo_mn_console.dir/build
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/src/main.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/src/app.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/src/event.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj.requires
CMakeFiles/demo_mn_console.dir/requires: CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj.requires
.PHONY : CMakeFiles/demo_mn_console.dir/requires
CMakeFiles/demo_mn_console.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/demo_mn_console.dir/cmake_clean.cmake
.PHONY : CMakeFiles/demo_mn_console.dir/clean
CMakeFiles/demo_mn_console.dir/depend: mnobd.cdc
cd /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/demo_mn_console.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/demo_mn_console.dir/depend

View File

@ -0,0 +1,28 @@
file(REMOVE_RECURSE
"mnobd.cdc"
"CMakeFiles/demo_mn_console.dir/src/main.c.obj"
"CMakeFiles/demo_mn_console.dir/src/app.c.obj"
"CMakeFiles/demo_mn_console.dir/src/event.c.obj"
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj"
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj"
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj"
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj"
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj"
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj"
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj"
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj"
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj"
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj"
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj"
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj"
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj"
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj"
"CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj"
"libdemo_mn_console.pdb"
"libdemo_mn_console.a"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/demo_mn_console.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@ -0,0 +1,463 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/debugstr.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/debugstr.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
../../../common/src/firmwaremanager/firmwarecheck.h
../../../common/src/firmwaremanager/firmwareinfo.h
../../../common/src/firmwaremanager/firmwareinfodecode.h
../../../common/src/firmwaremanager/firmwaremanager.h
../../../common/src/firmwaremanager/firmwarestore.h
../../../common/src/firmwaremanager/firmwaretrace.h
../../../common/src/firmwaremanager/firmwareupdate.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
../../../common/src/firmwaremanager/firmwareinfo.h
../../../common/src/firmwaremanager/firmwareinfodecode.h
../../../common/src/firmwaremanager/firmwaremanager.h
../../../common/src/firmwaremanager/firmwarestore.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
../../../common/src/firmwaremanager/firmwareinfodecode.h
../../../common/src/firmwaremanager/firmwaremanager.h
../../../common/src/firmwaremanager/firmwarestore.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/debugstr.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
../../../common/src/firmwaremanager/firmwarecheck.h
../../../common/src/firmwaremanager/firmwareinfo.h
../../../common/src/firmwaremanager/firmwareinfodecode.h
../../../common/src/firmwaremanager/firmwaremanager.h
../../../common/src/firmwaremanager/firmwarestore.h
../../../common/src/firmwaremanager/firmwaretrace.h
../../../common/src/firmwaremanager/firmwareupdate.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
../../../common/src/firmwaremanager/firmwaremanager.h
../../../common/src/firmwaremanager/firmwarestore.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
../../../common/src/firmwaremanager/firmwareinfodecode.h
../../../common/src/firmwaremanager/firmwaremanager.h
../../../common/src/firmwaremanager/firmwarestore.h
../../../common/src/firmwaremanager/firmwaretrace.h
../../../common/src/firmwaremanager/firmwareupdate.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
../../../common/objdicts/CiA302-4_MN/objdict.h
../../../common/src/obdcreate/obdmacro.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj
../../../../contrib/trace/trace.h
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj
../../../../contrib/trace/trace.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c
CMakeFiles/demo_mn_console.dir/src/app.c.obj
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/debugstr.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
../../../common/objdicts/CiA302-4_MN/obdpi.h
../../../common/src/eventlog/eventlog.h
../../../common/src/eventlog/eventlogstring.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/app.c
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/app.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/xap.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj
../../../../contrib/console/console.h
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/debugstr.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
../../../common/src/eventlog/eventlog.h
../../../common/src/eventlog/eventlogstring.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/event.c
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/event.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj
../../../../contrib/console/console.h
../../../../contrib/getopt/getopt.h
../../../../stack/include/oplk/basictypes.h
../../../../stack/include/oplk/cfm.h
../../../../stack/include/oplk/debugstr.h
../../../../stack/include/oplk/errordefs.h
../../../../stack/include/oplk/event.h
../../../../stack/include/oplk/frame.h
../../../../stack/include/oplk/nmt.h
../../../../stack/include/oplk/obd.h
../../../../stack/include/oplk/obdal.h
../../../../stack/include/oplk/oplk.h
../../../../stack/include/oplk/oplkdefs.h
../../../../stack/include/oplk/oplkinc.h
../../../../stack/include/oplk/sdo.h
../../../../stack/include/oplk/sdoabortcodes.h
../../../../stack/include/oplk/targetdefs/c5socarm.h
../../../../stack/include/oplk/targetdefs/linux.h
../../../../stack/include/oplk/targetdefs/microblaze.h
../../../../stack/include/oplk/targetdefs/nios2.h
../../../../stack/include/oplk/targetdefs/vxworks.h
../../../../stack/include/oplk/targetdefs/wince.h
../../../../stack/include/oplk/targetdefs/windows-mingw.h
../../../../stack/include/oplk/targetdefs/windows.h
../../../../stack/include/oplk/targetdefs/winkernel.h
../../../../stack/include/oplk/targetsystem.h
../../../../stack/include/oplk/version.h
../../../common/src/eventlog/eventlog.h
../../../common/src/eventlog/eventlogstring.h
../../../common/src/firmwaremanager/firmwaremanager.h
../../../common/src/netselect/netselect.h
../../../common/src/obdcreate/obdcreate.h
../../../common/src/system/system.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/app.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/event.h
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/src/main.c

View File

@ -0,0 +1,463 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/debugstr.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/debugstr.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../common/src/firmwaremanager/firmwarecheck.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../common/src/firmwaremanager/firmwareinfo.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../common/src/firmwaremanager/firmwareinfodecode.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../common/src/firmwaremanager/firmwaremanager.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../common/src/firmwaremanager/firmwarestore.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../common/src/firmwaremanager/firmwaretrace.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: ../../../common/src/firmwaremanager/firmwareupdate.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../common/src/firmwaremanager/firmwareinfo.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../common/src/firmwaremanager/firmwareinfodecode.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../common/src/firmwaremanager/firmwaremanager.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: ../../../common/src/firmwaremanager/firmwarestore.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../common/src/firmwaremanager/firmwareinfodecode.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../common/src/firmwaremanager/firmwaremanager.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: ../../../common/src/firmwaremanager/firmwarestore.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/debugstr.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../common/src/firmwaremanager/firmwarecheck.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../common/src/firmwaremanager/firmwareinfo.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../common/src/firmwaremanager/firmwareinfodecode.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../common/src/firmwaremanager/firmwaremanager.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../common/src/firmwaremanager/firmwarestore.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../common/src/firmwaremanager/firmwaretrace.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: ../../../common/src/firmwaremanager/firmwareupdate.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../common/src/firmwaremanager/firmwaremanager.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: ../../../common/src/firmwaremanager/firmwarestore.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../common/src/firmwaremanager/firmwareinfodecode.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../common/src/firmwaremanager/firmwaremanager.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../common/src/firmwaremanager/firmwarestore.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../common/src/firmwaremanager/firmwaretrace.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: ../../../common/src/firmwaremanager/firmwareupdate.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../common/objdicts/CiA302-4_MN/objdict.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: ../../../common/src/obdcreate/obdmacro.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../contrib/trace/trace.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj: ../../../../contrib/trace/trace.h
CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/debugstr.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../common/objdicts/CiA302-4_MN/obdpi.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../common/src/eventlog/eventlog.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../../common/src/eventlog/eventlogstring.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../src/app.c
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../src/app.h
CMakeFiles/demo_mn_console.dir/src/app.c.obj: ../../src/xap.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../contrib/console/console.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/debugstr.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../common/src/eventlog/eventlog.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../../common/src/eventlog/eventlogstring.h
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../src/event.c
CMakeFiles/demo_mn_console.dir/src/event.c.obj: ../../src/event.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../contrib/console/console.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../contrib/getopt/getopt.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/basictypes.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/cfm.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/debugstr.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/errordefs.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/event.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/frame.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/nmt.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/obd.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/obdal.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/oplk.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/oplkdefs.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/oplkinc.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/sdo.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/sdoabortcodes.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/c5socarm.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/linux.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/microblaze.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/nios2.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/vxworks.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/wince.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/windows-mingw.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/windows.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetdefs/winkernel.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/targetsystem.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../../stack/include/oplk/version.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../common/src/eventlog/eventlog.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../common/src/eventlog/eventlogstring.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../common/src/firmwaremanager/firmwaremanager.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../common/src/netselect/netselect.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../common/src/obdcreate/obdcreate.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../../common/src/system/system.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../src/app.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../src/event.h
CMakeFiles/demo_mn_console.dir/src/main.c.obj: ../../src/main.c

View File

@ -0,0 +1,2 @@
/usr/bin/arm-none-eabi-ar qc libdemo_mn_console.a CMakeFiles/demo_mn_console.dir/src/main.c.obj CMakeFiles/demo_mn_console.dir/src/app.c.obj CMakeFiles/demo_mn_console.dir/src/event.c.obj CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj
/usr/bin/arm-none-eabi-ranlib libdemo_mn_console.a

View File

@ -0,0 +1,21 @@
CMAKE_PROGRESS_1 = 1
CMAKE_PROGRESS_2 = 2
CMAKE_PROGRESS_3 = 3
CMAKE_PROGRESS_4 = 4
CMAKE_PROGRESS_5 = 5
CMAKE_PROGRESS_6 = 6
CMAKE_PROGRESS_7 = 7
CMAKE_PROGRESS_8 = 8
CMAKE_PROGRESS_9 = 9
CMAKE_PROGRESS_10 = 10
CMAKE_PROGRESS_11 = 11
CMAKE_PROGRESS_12 = 12
CMAKE_PROGRESS_13 = 13
CMAKE_PROGRESS_14 = 14
CMAKE_PROGRESS_15 = 15
CMAKE_PROGRESS_16 = 16
CMAKE_PROGRESS_17 = 17
CMAKE_PROGRESS_18 = 18
CMAKE_PROGRESS_19 = 19
CMAKE_PROGRESS_20 = 20

View File

@ -0,0 +1,34 @@
const char features[] = {"\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304
"1"
#else
"0"
#endif
"c_function_prototypes\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
"1"
#else
"0"
#endif
"c_restrict\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L
"1"
#else
"0"
#endif
"c_static_assert\n"
"C_FEATURE:"
#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
"1"
#else
"0"
#endif
"c_variadic_macros\n"
};
int main(int argc, char** argv) { (void)argv; return features[argc]; }

View File

@ -0,0 +1,738 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.10
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# The main all target
all: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles/progress.marks
$(MAKE) -f CMakeFiles/Makefile2 all
$(CMAKE_COMMAND) -E cmake_progress_start /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
$(MAKE) -f CMakeFiles/Makefile2 clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
$(MAKE) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
$(MAKE) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall/fast
# clear depends
depend:
$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
#=============================================================================
# Target rules for targets named demo_mn_console
# Build rule for target.
demo_mn_console: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 demo_mn_console
.PHONY : demo_mn_console
# fast build rule for target.
demo_mn_console/fast:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/build
.PHONY : demo_mn_console/fast
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.c.s
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.obj: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.obj
# target to build an object file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.obj
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.i: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.i
# target to preprocess a source file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.i
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.i
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.s: home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.s
# target to generate assembly for a file
home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.s
.PHONY : home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.c.s
src/app.obj: src/app.c.obj
.PHONY : src/app.obj
# target to build an object file
src/app.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/src/app.c.obj
.PHONY : src/app.c.obj
src/app.i: src/app.c.i
.PHONY : src/app.i
# target to preprocess a source file
src/app.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/src/app.c.i
.PHONY : src/app.c.i
src/app.s: src/app.c.s
.PHONY : src/app.s
# target to generate assembly for a file
src/app.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/src/app.c.s
.PHONY : src/app.c.s
src/event.obj: src/event.c.obj
.PHONY : src/event.obj
# target to build an object file
src/event.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/src/event.c.obj
.PHONY : src/event.c.obj
src/event.i: src/event.c.i
.PHONY : src/event.i
# target to preprocess a source file
src/event.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/src/event.c.i
.PHONY : src/event.c.i
src/event.s: src/event.c.s
.PHONY : src/event.s
# target to generate assembly for a file
src/event.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/src/event.c.s
.PHONY : src/event.c.s
src/main.obj: src/main.c.obj
.PHONY : src/main.obj
# target to build an object file
src/main.c.obj:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/src/main.c.obj
.PHONY : src/main.c.obj
src/main.i: src/main.c.i
.PHONY : src/main.i
# target to preprocess a source file
src/main.c.i:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/src/main.c.i
.PHONY : src/main.c.i
src/main.s: src/main.c.s
.PHONY : src/main.s
# target to generate assembly for a file
src/main.c.s:
$(MAKE) -f CMakeFiles/demo_mn_console.dir/build.make CMakeFiles/demo_mn_console.dir/src/main.c.s
.PHONY : src/main.c.s
# Help Target
help:
@echo "The following are some of the valid targets for this Makefile:"
@echo "... all (the default if no target is provided)"
@echo "... clean"
@echo "... depend"
@echo "... install/strip"
@echo "... edit_cache"
@echo "... list_install_components"
@echo "... install/local"
@echo "... rebuild_cache"
@echo "... demo_mn_console"
@echo "... install"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/objdicts/CiA302-4_MN/obdpi.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlog.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/eventlog/eventlogstring.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarecheck.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfo.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareinfodecode-ascii.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwaremanager.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwarestore-file.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/firmwaremanager/firmwareupdate.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/netselect/netselect.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/obdcreate/obdcreate.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/common/src/system/system-xiuos.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/console-xiuos.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/console/printlog.s"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.obj"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.i"
@echo "... home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/contrib/trace/trace-printf.s"
@echo "... src/app.obj"
@echo "... src/app.i"
@echo "... src/app.s"
@echo "... src/event.obj"
@echo "... src/event.i"
@echo "... src/event.s"
@echo "... src/main.obj"
@echo "... src/main.i"
@echo "... src/main.s"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@ -0,0 +1,56 @@
# Install script for directory: /home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/../../bin/xiuos/arm")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "Release")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/demo_mn_console" TYPE PROGRAM FILES "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/../../tools/linux/set_prio")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/demo_mn_console" TYPE STATIC_LIBRARY FILES "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/libdemo_mn_console.a")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/demo_mn_console" TYPE FILE FILES "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/mnobd.cdc")
endif()
if(CMAKE_INSTALL_COMPONENT)
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
else()
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
file(WRITE "/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/build/xiuos/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")

View File

@ -0,0 +1,3 @@
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/../../bin/xiuos/arm/demo_mn_console/set_prio
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/../../bin/xiuos/arm/demo_mn_console/libdemo_mn_console.a
/home/bill/XiUOSopenPOWERLINK/xiuos/APP_Framework/Framework/connection/industrial_ethernet/openPOWERLINK/apps/demo_mn_console/../../bin/xiuos/arm/demo_mn_console/mnobd.cdc

View File

@ -0,0 +1,53 @@
################################################################################
#
# CMake target configuration file for ARM XiUOS
#
# Copyright (c) 2016, Kalycito Infotech Pvt. Ltd.
# Copyright (c) 2020, AIIT XUOS Lab
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the copyright holders nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
################################################################################
################################################################################
# Name of the target platform
SET(CMAKE_SYSTEM ARM-XiUOS)
SET(CMAKE_SYSTEM_NAME XiUOS)
SET(CMAKE_SYSTEM_PROCESSOR arm)
# specify the cross compiler
SET(CMAKE_C_COMPILER arm-none-eabi-gcc)
SET(CMAKE_CXX_COMPILER arm-none-eabi-g++)
SET(CMAKE_ASM-ATT_COMPILER arm-none-eabi-as)
# skip CMake compiler check
SET(CMAKE_C_COMPILER_WORKS TRUE)
SET(CMAKE_CXX_COMPILER_WORKS TRUE)
SET(CMAKE_ASM-ATT_COMPILER_WORKS TRUE)
# search for programs in the build host directories
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
# for libraries in the target directories
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY NEVER)
# for headers in the target directories
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE NEVER)

View File

@ -4,6 +4,7 @@
#
# Copyright (c) 2014, B&R Industrial Automation GmbH
# Copyright (c) 2016, Kalycito Infotech Private Limited
# Copyright (c) 2020, AIIT XUOS Lab
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@ -101,6 +102,8 @@ IF(CMAKE_SYSTEM_NAME STREQUAL "Linux")
INCLUDE(cmake/options-linux.cmake)
ELSEIF(CMAKE_SYSTEM_NAME STREQUAL "Windows")
INCLUDE(cmake/options-windows.cmake)
ELSEIF(CMAKE_SYSTEM_NAME STREQUAL "XiUOS")
INCLUDE(cmake/options-xiuos.cmake)
ELSEIF((CMAKE_SYSTEM_NAME STREQUAL "Generic") AND (CMAKE_SYSTEM_PROCESSOR STREQUAL "Microblazeise"))
INCLUDE(cmake/options-microblazeise.cmake)
ELSEIF((CMAKE_SYSTEM_NAME STREQUAL "Generic") AND (CMAKE_SYSTEM_PROCESSOR STREQUAL "Microblaze"))

View File

@ -0,0 +1,3 @@
*
.*
!.gitignore

View File

@ -0,0 +1,121 @@
################################################################################
#
# CMake options for openPOWERLINK stack on XiUOS
#
# Copyright (c) 2016, B&R Industrial Automation GmbH
# Copyright (c) 2016, Franz Profelt (franz.profelt@gmail.com)
# Copyright (c) 2018, Kalycito Infotech Private Limited
# Copyright (c) 2020, AIIT XUOS Lab
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the copyright holders nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
################################################################################
MESSAGE(STATUS "Adding CMAKE configuration options for XiUOS")
################################################################################
# Options for MN libraries
OPTION (CFG_COMPILE_LIB_MN "Compile openPOWERLINK MN library" ON)
OPTION (CFG_COMPILE_LIB_MNAPP_USERINTF "Compile openPOWERLINK MN application library for userspace" OFF)
OPTION (CFG_COMPILE_LIB_MNAPP_KERNELINTF "Compile openPOWERLINK MN application library for kernel interface" OFF)
OPTION (CFG_COMPILE_LIB_MNAPP_PCIEINTF "Compile openPOWERLINK MN application library for PCIe interface" OFF)
OPTION (CFG_COMPILE_LIB_MNAPP_ZYNQINTF "Compile openPOWERLINK MN application library for zynq/FPGA interface" OFF)
OPTION (CFG_COMPILE_LIB_MNDRV_PCAP "Compile openPOWERLINK MN driver library for linux userspace (pcap)" OFF)
OPTION (CFG_COMPILE_LIB_MN_SIM "Compile openPOWERLINK MN library with simulation interface" OFF)
################################################################################
# Options for CN libraries
OPTION (CFG_COMPILE_LIB_CN "Compile openPOWERLINK CN library" ON)
OPTION (CFG_COMPILE_LIB_CNAPP_USERINTF "Compile openPOWERLINK CN application library for userspace" OFF)
OPTION (CFG_COMPILE_LIB_CNAPP_KERNELINTF "Compile openPOWERLINK CN application library for kernel interface" OFF)
OPTION (CFG_COMPILE_LIB_CNAPP_ZYNQINTF "Compile openPOWERLINK CN application library for zynq/FPGA interface" OFF)
OPTION (CFG_COMPILE_LIB_CNDRV_PCAP "Compile openPOWERLINK CN driver library for linux userspace (pcap)" OFF)
OPTION (CFG_COMPILE_LIB_CN_SIM "Compile openPOWERLINK CN library with simulation interface" OFF)
################################################################################
# Options for shared libraries
OPTION (CFG_COMPILE_SHARED_LIBRARY "Build openPOWERLINK library as shared library" OFF)
################################################################################
# Options for library features
OPTION (CFG_USE_PCAP_EDRV "Compile openPOWERLINK library with pcap edrv" OFF)
OPTION (CFG_INCLUDE_MN_REDUNDANCY "Compile MN redundancy functions into MN libraries" OFF)
CMAKE_DEPENDENT_OPTION (CFG_STORE_RESTORE "Support storing of OD in non-volatile memory (file system)" OFF
"CFG_COMPILE_LIB_CN OR CFG_COMPILE_LIB_CNAPP_USERINTF OR CFG_COMPILE_LIB_CNAPP_KERNELINTF" OFF)
################################################################################
# Add library subdirectories
# Add MN libraries
IF(CFG_COMPILE_LIB_MN)
ADD_SUBDIRECTORY(proj/xiuos/liboplkmn)
ENDIF()
IF(CFG_COMPILE_LIB_MNAPP_USERINTF)
ADD_SUBDIRECTORY(proj/linux/liboplkmnapp-userintf)
ENDIF()
IF(CFG_COMPILE_LIB_MNAPP_KERNELINTF)
ADD_SUBDIRECTORY(proj/linux/liboplkmnapp-kernelintf)
ENDIF()
IF((CFG_COMPILE_LIB_MNAPP_PCIEINTF) OR (CFG_COMPILE_LIB_MNAPP_ZYNQINTF))
ADD_SUBDIRECTORY(proj/linux/liboplkmnapp-kernelpcp)
ENDIF()
IF(CFG_COMPILE_LIB_MNDRV_PCAP)
ADD_SUBDIRECTORY(proj/linux/liboplkmndrv-pcap)
ENDIF()
IF(CFG_COMPILE_LIB_MN_SIM)
ADD_SUBDIRECTORY(proj/linux/liboplkmn-sim)
ENDIF()
# Add CN libraries
IF(CFG_COMPILE_LIB_CN)
ADD_SUBDIRECTORY(proj/xiuos/liboplkcn)
ENDIF()
IF(CFG_COMPILE_LIB_CNAPP_USERINTF)
ADD_SUBDIRECTORY(proj/linux/liboplkcnapp-userintf)
ENDIF()
IF(CFG_COMPILE_LIB_CNAPP_KERNELINTF)
ADD_SUBDIRECTORY(proj/linux/liboplkcnapp-kernelintf)
ENDIF()
IF(CFG_COMPILE_LIB_CNAPP_ZYNQINTF)
ADD_SUBDIRECTORY(proj/linux/liboplkcnapp-kernelpcp)
ENDIF()
IF(CFG_COMPILE_LIB_CNDRV_PCAP)
ADD_SUBDIRECTORY(proj/linux/liboplkcndrv-pcap)
ENDIF()
IF(CFG_COMPILE_LIB_CN_SIM)
ADD_SUBDIRECTORY(proj/linux/liboplkcn-sim)
ENDIF()

View File

@ -5,6 +5,7 @@
# Copyright (c) 2017, B&R Industrial Automation GmbH
# Copyright (c) 2016, Franz Profelt (franz.profelt@gmail.com)
# Copyright (c) 2018, Kalycito Infotech Private Limited
# Copyright (c) 2020, AIIT XUOS Lab
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@ -220,6 +221,11 @@ SET(EVENT_UCAL_LINUXUSER_SOURCES
${USER_SOURCE_DIR}/event/eventucalintf-circbuf.c
)
SET(EVENT_UCAL_XIUOS_SOURCES
${USER_SOURCE_DIR}/event/eventucal-xiuos.c
${USER_SOURCE_DIR}/event/eventucalintf-circbuf.c
)
SET(EVENT_UCAL_LINUXIOCTL_SOURCES
${USER_SOURCE_DIR}/event/eventucal-linuxioctl.c
)
@ -396,6 +402,11 @@ SET(EVENT_KCAL_WINDOWS_SOURCES
${KERNEL_SOURCE_DIR}/event/eventkcalintf-circbuf.c
)
SET(EVENT_KCAL_XIUOS_SOURCES
${KERNEL_SOURCE_DIR}/event/eventkcal-xiuos.c
${KERNEL_SOURCE_DIR}/event/eventkcalintf-circbuf.c
)
SET(EVENT_KCAL_LINUXKERNEL_SOURCES
${KERNEL_SOURCE_DIR}/event/eventkcal-linuxkernel.c
${KERNEL_SOURCE_DIR}/event/eventkcalintf-circbuf.c
@ -476,6 +487,13 @@ SET(HARDWARE_DRIVER_LINUXUSERRAWSOCKET_SOURCES
${EDRV_SOURCE_DIR}/edrv-rawsock_linux.c
)
SET(HARDWARE_DRIVER_XIUOS_SOURCES
${KERNEL_SOURCE_DIR}/veth/veth-generic.c
${KERNEL_SOURCE_DIR}/timer/hrestimer-xiuos.c
${EDRV_SOURCE_DIR}/edrvcyclic.c
${EDRV_SOURCE_DIR}/edrv-xiuos.c
)
SET(HARDWARE_DRIVER_WINDOWS_SOURCES
${EDRV_SOURCE_DIR}/edrvcyclic.c
${EDRV_SOURCE_DIR}/edrv-pcap_win.c
@ -533,6 +551,10 @@ SET(USER_TIMER_WINDOWS_SOURCES
${USER_SOURCE_DIR}/timer/timer-generic.c
)
SET(USER_TIMER_XIUOS_SOURCES
${USER_SOURCE_DIR}/timer/timer-generic.c
)
SET(USER_TIMER_GENERIC_SOURCES
${USER_SOURCE_DIR}/timer/timer-generic.c
)
@ -643,6 +665,12 @@ ELSE ()
)
ENDIF ()
SET(TARGET_XIUOS_SOURCES
${ARCH_SOURCE_DIR}/xiuos/target-xiuos.c
${ARCH_SOURCE_DIR}/xiuos/target-mutex.c
${ARCH_SOURCE_DIR}/xiuos/netif-xiuos.c
)
SET(TARGET_MICROBLAZE_SOURCES
${ARCH_SOURCE_DIR}/xilinx-microblaze/systemtimer.c
${ARCH_SOURCE_DIR}/xilinx-microblaze/usleep.c

View File

@ -136,6 +136,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#elif (defined (_WIN32) || defined (__MINGW32__))
#define TARGET_SYSTEM _WIN32_ // WIN32 definition
#define DEV_SYSTEM _DEV_WIN32_MINGW_
#elif (defined(__XIUOS__)) // ARM / XiUOS
#define TARGET_SYSTEM _XIUOS_
#define DEV_SYSTEM _DEV_LINUX_
#else /* (defined (_WIN32) || defined (__MINGW32__)) */ // unsupported
#error 'ERROR: TARGET_SYSTEM / DEV_SYSTEM not found!'
#endif
@ -171,7 +174,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//------------------------------------------------------------------------------
// TARGET_SYSTEM specific definitions
//------------------------------------------------------------------------------
#if (TARGET_SYSTEM == _LINUX_)
#if (TARGET_SYSTEM == _LINUX_ || TARGET_SYSTEM == _XIUOS_)
#include <oplk/targetdefs/linux.h>

View File

@ -0,0 +1,96 @@
################################################################################
#
# CMake file for openPOWERLINK CN library on Linux userspace
#
# Copyright (c) 2017, B&R Industrial Automation GmbH
# Copyright (c) 2020, AIIT XUOS Lab
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the copyright holders nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
################################################################################
# Set library name
SET(LIB_NAME "oplkcn")
MESSAGE(STATUS "Configuring ${LIB_NAME}")
# Set type of library
IF(CFG_COMPILE_SHARED_LIBRARY)
SET(LIB_TYPE "SHARED")
ELSE()
SET(LIB_TYPE "STATIC")
ENDIF()
# set sources of POWERLINK library
SET (LIB_SOURCES
${USER_SOURCES}
${CTRL_UCAL_DIRECT_SOURCES}
${DLL_UCAL_CIRCBUF_SOURCES}
${ERRHND_UCAL_LOCAL_SOURCES}
${EVENT_UCAL_XIUOS_SOURCES}
${PDO_UCAL_LOCAL_SOURCES}
${USER_TIMER_XIUOS_SOURCES}
${KERNEL_SOURCES}
${CTRL_KCAL_DIRECT_SOURCES}
${DLL_KCAL_CIRCBUF_SOURCES}
${ERRHND_KCAL_LOCAL_SOURCES}
${EVENT_KCAL_XIUOS_SOURCES}
${PDO_KCAL_LOCAL_SOURCES}
${COMMON_SOURCES}
${COMMON_LINUXUSER_SOURCES}
${TARGET_XIUOS_SOURCES}
${OBD_CONF_LINUXUSER_SOURCES}
${CIRCBUF_NOOS_SOURCES}
${MEMMAP_NULL_SOURCES}
${HARDWARE_DRIVER_XIUOS_SOURCES}
)
# Configure compile definitions
IF(CMAKE_SYSTEM_PROCESSOR MATCHES "^(i.86|x86(_64)?)$")
SET(LIB_SOURCES ${LIB_SOURCES} ${ARCH_X86_SOURCES})
ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES arm*)
SET(LIB_SOURCES ${LIB_SOURCES} ${ARCH_LE_SOURCES})
ELSE()
MESSAGE(FATAL_ERROR "Unsupported CMAKE_SYSTEM_PROCESSOR ${CMAKE_SYSTEM_PROCESSOR}")
ENDIF()
# Configure compile definitions
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -pedantic -std=c99 -fno-strict-aliasing")
ADD_DEFINITIONS(-D__XIUOS__)
ADD_DEFINITIONS(-D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L)
ADD_DEFINITIONS(-DCONFIG_FIND_LOCAL_INTERFACES)
IF(CFG_STORE_RESTORE)
ADD_DEFINITIONS(-DCONFIG_INCLUDE_STORE_RESTORE)
ENDIF()
# Additional include directories
INCLUDE_DIRECTORIES(
.
)
# Define library and installation rules
ADD_LIBRARY(${LIB_NAME} ${LIB_TYPE} ${LIB_SOURCES})
TARGET_LINK_LIBRARIES(${LIB_NAME} ${ARCH_LIBRARIES})
SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY COMPILE_DEFINITIONS_DEBUG DEBUG;DEF_DEBUG_LVL=${CFG_DEBUG_LVL})
SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY DEBUG_POSTFIX "_d")
INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION . LIBRARY DESTINATION .)

View File

@ -0,0 +1,134 @@
/**
********************************************************************************
\file oplkcfg.h
\brief Configuration options for openPOWERLINK CN library
This file contains the configuration options for the openPOWERLINK CN libary
on Linux.
*******************************************************************************/
/*------------------------------------------------------------------------------
Copyright (c) 2012, SYSTEC electronik GmbH
Copyright (c) 2018, B&R Industrial Automation GmbH
Copyright (c) 2017, Kalycito Infotech Private Limited.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the copyright holders nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------*/
#ifndef _INC_oplkcfg_H_
#define _INC_oplkcfg_H_
//==============================================================================
// generic defines which for whole openPOWERLINK stack
//==============================================================================
#ifndef BENCHMARK_MODULES
#define BENCHMARK_MODULES 0 //0xEE800042L
#endif
// Default debug level:
// Only debug traces of these modules will be compiled which flags are set in define DEF_DEBUG_LVL.
#ifndef DEF_DEBUG_LVL
#define DEF_DEBUG_LVL 0xC0000000L
#endif
#undef FTRACE_DEBUG
/* assure that system priorities of hrtimer and net-rx kernel threads are set appropriate */
#define CONFIG_THREAD_PRIORITY_HIGH 75
#define CONFIG_THREAD_PRIORITY_MEDIUM 50
#define CONFIG_THREAD_PRIORITY_LOW 49
// These macros define all modules which are included
#define CONFIG_INCLUDE_PDO
#define CONFIG_INCLUDE_SDOS
#define CONFIG_INCLUDE_SDOC
#define CONFIG_INCLUDE_SDO_ASND
#define CONFIG_DLLCAL_QUEUE CIRCBUF_QUEUE
#define CONFIG_VETH_SET_DEFAULT_GATEWAY FALSE
#define CONFIG_CHECK_HEARTBEAT_PERIOD 1000 // 1000 ms
//==============================================================================
// Ethernet driver (Edrv) specific defines
//==============================================================================
// switch this define to TRUE if Edrv supports auto delay responses
#define CONFIG_EDRV_AUTO_RESPONSE_DELAY FALSE
// switch this define to TRUE to include Edrv diagnostic functions
#define CONFIG_EDRV_USE_DIAGNOSTICS FALSE
//==============================================================================
// Data Link Layer (DLL) specific defines
//==============================================================================
// CN supports PRes Chaining
#define CONFIG_DLL_PRES_CHAINING_CN FALSE
// negative time shift of isochronous task in relation to SoC
#define CONFIG_DLL_SOC_SYNC_SHIFT_US 150
// time when CN processing the isochronous task (sync callback of application and cycle preparation)
#define CONFIG_DLL_PROCESS_SYNC DLL_PROCESS_SYNC_ON_SOC
// Disable deferred release of rx-buffers until EdrvPcap supports it
#define CONFIG_DLL_DEFERRED_RXFRAME_RELEASE_SYNC FALSE
#define CONFIG_DLL_DEFERRED_RXFRAME_RELEASE_ASYNC FALSE
//==============================================================================
// OBD specific defines
//==============================================================================
// Switch this define to TRUE if the stack should check the object ranges
#define CONFIG_OBD_CHECK_OBJECT_RANGE TRUE
// set this define to TRUE if there are strings or domains in OD, which
// may be changed in object size and/or object data pointer by its object
// callback function (called event kObdEvWrStringDomain)
#define CONFIG_OBD_USE_STRING_DOMAIN_IN_RAM TRUE
// Set this string to true if OD configuration save and load feature is
// supported by the device
#ifdef CONFIG_INCLUDE_STORE_RESTORE
#define CONFIG_OBD_USE_STORE_RESTORE TRUE
#define CONFIG_OBD_CALC_OD_SIGNATURE TRUE
#endif
//==============================================================================
// Timer module specific defines
//==============================================================================
// if TRUE the high resolution timer module will be used (must always be TRUE!)
#define CONFIG_TIMER_USE_HIGHRES TRUE
//==============================================================================
// SDO module specific defines
//==============================================================================
#endif // _INC_oplkcfg_H_

View File

@ -0,0 +1,95 @@
################################################################################
#
# CMake file for openPOWERLINK MN library
#
# Copyright (c) 2017, B&R Industrial Automation GmbH
# Copyright (c) 2020, AIIT XUOS Lab
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the copyright holders nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
################################################################################
# Set library name
SET(LIB_NAME "oplkmn")
MESSAGE(STATUS "Configuring ${LIB_NAME}")
# Set type of library
IF(CFG_COMPILE_SHARED_LIBRARY)
SET(LIB_TYPE "SHARED")
ELSE()
SET(LIB_TYPE "STATIC")
ENDIF()
# set general sources of POWERLINK library
SET (LIB_SOURCES
${USER_SOURCES}
${USER_MN_SOURCES}
${CTRL_UCAL_DIRECT_SOURCES}
${DLL_UCAL_CIRCBUF_SOURCES}
${ERRHND_UCAL_LOCAL_SOURCES}
${EVENT_UCAL_XIUOS_SOURCES}
${PDO_UCAL_LOCAL_SOURCES}
${USER_TIMER_XIUOS_SOURCES}
${KERNEL_SOURCES}
${CTRL_KCAL_DIRECT_SOURCES}
${DLL_KCAL_CIRCBUF_SOURCES}
${ERRHND_KCAL_LOCAL_SOURCES}
${EVENT_KCAL_XIUOS_SOURCES}
${PDO_KCAL_LOCAL_SOURCES}
${COMMON_SOURCES}
${COMMON_LINUXUSER_SOURCES}
${TARGET_XIUOS_SOURCES}
${CIRCBUF_NOOS_SOURCES}
${MEMMAP_NULL_SOURCES}
${HARDWARE_DRIVER_XIUOS_SOURCES}
)
# Configure compile definitions
IF(CMAKE_SYSTEM_PROCESSOR MATCHES "^(i.86|x86(_64)?)$")
SET(LIB_SOURCES ${LIB_SOURCES} ${ARCH_X86_SOURCES})
ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES arm*)
SET(LIB_SOURCES ${LIB_SOURCES} ${ARCH_LE_SOURCES})
ELSE()
MESSAGE(FATAL_ERROR "Unsupported CMAKE_SYSTEM_PROCESSOR ${CMAKE_SYSTEM_PROCESSOR}")
ENDIF()
# Configure compile definitions
IF(CFG_INCLUDE_MN_REDUNDANCY)
ADD_DEFINITIONS(-DCONFIG_INCLUDE_NMT_RMN)
ENDIF()
ADD_DEFINITIONS(-D__XIUOS__)
ADD_DEFINITIONS(-DCONFIG_FIND_LOCAL_INTERFACES)
ADD_DEFINITIONS(-DCONFIG_MN -D_GNU_SOURCE -D_POSIX_C_SOURCE=200112L)
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -pedantic -std=c99 -fno-strict-aliasing")
# Additional include directories
INCLUDE_DIRECTORIES(
.
)
# Define library and installation rules
ADD_LIBRARY(${LIB_NAME} ${LIB_TYPE} ${LIB_SOURCES})
TARGET_LINK_LIBRARIES(${LIB_NAME} ${ARCH_LIBRARIES})
SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY COMPILE_DEFINITIONS_DEBUG DEBUG;DEF_DEBUG_LVL=${CFG_DEBUG_LVL})
SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY DEBUG_POSTFIX "_d")
INSTALL(TARGETS ${LIB_NAME} ARCHIVE DESTINATION . LIBRARY DESTINATION .)

View File

@ -0,0 +1,141 @@
/**
********************************************************************************
\file oplkcfg.h
\brief Configuration options for openPOWERLINK MN library
This file contains the configuration options for the openPOWERLINK MN libary
on Linux.
*******************************************************************************/
/*------------------------------------------------------------------------------
Copyright (c) 2012, SYSTEC electronik GmbH
Copyright (c) 2018, B&R Industrial Automation GmbH
Copyright (c) 2017, Kalycito Infotech Private Limited.
Copyright (c) 2020, AIIT XUOS Lab
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the copyright holders nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------*/
#ifndef _INC_oplkcfg_H_
#define _INC_oplkcfg_H_
//==============================================================================
// generic defines which for whole openPOWERLINK stack
//==============================================================================
#ifndef BENCHMARK_MODULES
#define BENCHMARK_MODULES 0 //0xEE800042L
#endif
// Default debug level:
// Only debug traces of these modules will be compiled which flags are set in define DEF_DEBUG_LVL.
#ifndef DEF_DEBUG_LVL
#define DEF_DEBUG_LVL 0xC0000000L
#endif
#undef FTRACE_DEBUG
/* assure that system priorities of hrtimer and net-rx kernel threads are set appropriate */
#define CONFIG_THREAD_PRIORITY_HIGH 75
#define CONFIG_THREAD_PRIORITY_MEDIUM 50
#define CONFIG_THREAD_PRIORITY_LOW 49
// These macros define all modules which are included
#define CONFIG_INCLUDE_NMT_MN
#define CONFIG_INCLUDE_PDO
#define CONFIG_INCLUDE_SDOS
#define CONFIG_INCLUDE_SDOC
#define CONFIG_INCLUDE_SDO_ASND
#define CONFIG_DLLCAL_QUEUE CIRCBUF_QUEUE
#define CONFIG_VETH_SET_DEFAULT_GATEWAY FALSE
#define CONFIG_CHECK_HEARTBEAT_PERIOD 1000 // 1000 ms
//==============================================================================
// Ethernet driver (Edrv) specific defines
//==============================================================================
// switch this define to TRUE if Edrv supports auto delay responses
#define CONFIG_EDRV_AUTO_RESPONSE_DELAY FALSE
// switch this define to TRUE to include Edrv diagnostic functions
#define CONFIG_EDRV_USE_DIAGNOSTICS FALSE
//==============================================================================
// Data Link Layer (DLL) specific defines
//==============================================================================
// CN supports PRes Chaining
#define CONFIG_DLL_PRES_CHAINING_CN FALSE
// time when CN processing the isochronous task (sync callback of application and cycle preparation)
#define CONFIG_DLL_PROCESS_SYNC DLL_PROCESS_SYNC_ON_SOC
// Disable deferred release of rx-buffers until EdrvPcap supports it
#define CONFIG_DLL_DEFERRED_RXFRAME_RELEASE_SYNC FALSE
#define CONFIG_DLL_DEFERRED_RXFRAME_RELEASE_ASYNC FALSE
//==============================================================================
// OBD specific defines
//==============================================================================
// Switch this define to TRUE if the stack should check the object ranges
#define CONFIG_OBD_CHECK_OBJECT_RANGE TRUE
// set this define to TRUE if there are strings or domains in OD, which
// may be changed in object size and/or object data pointer by its object
// callback function (called event kObdEvWrStringDomain)
#define CONFIG_OBD_USE_STRING_DOMAIN_IN_RAM TRUE
#if defined(CONFIG_INCLUDE_CFM)
#define CONFIG_OBD_DEF_CONCISEDCF_FILENAME "mnobd.cdc"
#define CONFIG_CFM_CONFIGURE_CYCLE_LENGTH TRUE
#endif
// Configure if the range from 0xA000 is used for mapping client objects.
// openCONFIGURATOR uses this range for mapping objects.
#define CONFIG_OBD_INCLUDE_A000_TO_DEVICE_PART TRUE
//==============================================================================
// Timer module specific defines
//==============================================================================
// if TRUE the high resolution timer module will be used (must always be TRUE!)
#define CONFIG_TIMER_USE_HIGHRES TRUE
//==============================================================================
// SDO module specific defines
//==============================================================================
// increase the number of SDO channels, because we are master
#define CONFIG_SDO_MAX_CONNECTION_ASND 100
#define CONFIG_SDO_MAX_CONNECTION_SEQ 100
#define CONFIG_SDO_MAX_CONNECTION_COM 100
#define CONFIG_SDO_MAX_CONNECTION_UDP 50
#endif // _INC_oplkcfg_H_

View File

@ -0,0 +1,122 @@
/**
********************************************************************************
\file netif-linux.c
\brief Implementation of network interface enumeration functions for Linux
This file contains the implementation of helper functions for enumerating the
network interfaces in Linux.
\ingroup module_target
*******************************************************************************/
/*------------------------------------------------------------------------------
Copyright (c) 2017, B&R Industrial Automation GmbH
Copyright (c) 2020, AIIT XUOS Lab
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the copyright holders nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------*/
//------------------------------------------------------------------------------
// includes
//------------------------------------------------------------------------------
#include <common/oplkinc.h>
#include <common/target.h>
#include <sys/types.h>
#include <errno.h>
//============================================================================//
// G L O B A L D E F I N I T I O N S //
//============================================================================//
//------------------------------------------------------------------------------
// const defines
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// module global vars
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// global function prototypes
//------------------------------------------------------------------------------
//============================================================================//
// P R I V A T E D E F I N I T I O N S //
//============================================================================//
//------------------------------------------------------------------------------
// const defines
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// local types
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// local vars
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// local function prototypes
//------------------------------------------------------------------------------
//============================================================================//
// P U B L I C F U N C T I O N S //
//============================================================================//
//------------------------------------------------------------------------------
/**
\brief Enumerate network interfaces
This function enumerates all available network interfaces to be used by
openPOWERLINK.
\param[out] pInterfaces_p Pointer to store the list of
found interfaces.
\param[in,out] pNoInterfaces_p Pointer to the number of interfaces.
The maximum number of interfaces to be
stored is passed to the function.
The number of interfaces found is returned.
\return The function returns a \ref tOplkError error code.
*/
//------------------------------------------------------------------------------
tOplkError target_enumerateNetworkInterfaces(tNetIfId* pInterfaces_p,
size_t* pNoInterfaces_p)
{
UNUSED_PARAMETER(pInterfaces_p);
UNUSED_PARAMETER(pNoInterfaces_p);
return kErrorApiNotSupported;
}
//============================================================================//
// P R I V A T E F U N C T I O N S //
//============================================================================//
/// \name Private Functions
/// \{
/// \}

View File

@ -0,0 +1,196 @@
/**
********************************************************************************
\file linux/target-mutex.c
\brief Architecture specific mutex implementation
This file contains the mutex implementation for Linux userspace. It uses
BSD semaphores for the implementation and can therefore synchronize different
threads or processes.
\ingroup module_target
*******************************************************************************/
/*------------------------------------------------------------------------------
Copyright (c) 2016, B&R Industrial Automation GmbH
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the copyright holders nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------*/
//------------------------------------------------------------------------------
// includes
//------------------------------------------------------------------------------
#include <common/oplkinc.h>
#include <common/target.h>
#include <fcntl.h> /* For O_* constants */
#include <sys/stat.h> /* For mode constants */
#include <semaphore.h>
//============================================================================//
// G L O B A L D E F I N I T I O N S //
//============================================================================//
//------------------------------------------------------------------------------
// const defines
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// module global vars
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// global function prototypes
//------------------------------------------------------------------------------
//============================================================================//
// P R I V A T E D E F I N I T I O N S //
//============================================================================//
//------------------------------------------------------------------------------
// const defines
//------------------------------------------------------------------------------
#define SEM_SHARED 0 // Mutex shared between threads of a process
#define SEM_VALUE 1
//------------------------------------------------------------------------------
// local types
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// local vars
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// local function prototypes
//------------------------------------------------------------------------------
//============================================================================//
// P U B L I C F U N C T I O N S //
//============================================================================//
//------------------------------------------------------------------------------
/**
\brief Create Mutex
The function creates a mutex.
\param[in] mutexName_p The name of the mutex to create.
\param[out] pMutex_p Pointer to store the created mutex.
\return The function returns a tOplkError error code.
\retval kErrorOk Mutex was successfully created.
\retval kErrorNoFreeInstance An error occurred while creating the mutex.
\ingroup module_target
*/
//------------------------------------------------------------------------------
tOplkError target_createMutex(const char* mutexName_p,
OPLK_MUTEX_T* pMutex_p)
{
sem_t* pLockSem;
// WARNING: target_createMutex() will create a new independent mutex on each
// call, even if the very same name is specified.
UNUSED_PARAMETER(mutexName_p);
pLockSem = malloc(sizeof(sem_t));
if (pLockSem != NULL)
{
if (sem_init(pLockSem, SEM_SHARED, SEM_VALUE) == 0)
{
*pMutex_p = pLockSem;
return kErrorOk;
}
free(pLockSem);
}
return kErrorNoFreeInstance;
}
//------------------------------------------------------------------------------
/**
\brief Destroy Mutex
The function destroys a mutex.
\param[in] mutexId_p The ID of the mutex to destroy.
\ingroup module_target
*/
//------------------------------------------------------------------------------
void target_destroyMutex(OPLK_MUTEX_T mutexId_p)
{
sem_t* pLockSem = (sem_t*)mutexId_p;
if (pLockSem != NULL)
{
sem_destroy(pLockSem);
free(mutexId_p);
}
}
//------------------------------------------------------------------------------
/**
\brief Lock Mutex
The function locks a mutex.
\param[in] mutexId_p The ID of the mutex to lock.
\return The function returns a tOplkError error code.
\retval kErrorOk Mutex was successfully locked.
\retval kErrorNoFreeInstance An error occurred while locking the mutex.
\ingroup module_target
*/
//------------------------------------------------------------------------------
tOplkError target_lockMutex(OPLK_MUTEX_T mutexId_p)
{
if (sem_wait(mutexId_p) < 0)
return kErrorIllegalInstance;
return kErrorOk;
}
//------------------------------------------------------------------------------
/**
\brief Unlock Mutex
The function unlocks a mutex.
\param[in] mutexId_p The ID of the mutex to unlock.
\ingroup module_target
*/
//------------------------------------------------------------------------------
void target_unlockMutex(OPLK_MUTEX_T mutexId_p)
{
sem_post(mutexId_p);
}
//============================================================================//
// P R I V A T E F U N C T I O N S //
//============================================================================//
/// \name Private Functions
/// \{
/// \}

View File

@ -0,0 +1,381 @@
/**
********************************************************************************
\file linux/target-linux.c
\brief Target specific functions for Linux
The file implements target specific functions used in the openPOWERLINK stack.
\ingroup module_target
*******************************************************************************/
/*------------------------------------------------------------------------------
Copyright (c) 2016, B&R Industrial Automation GmbH
Copyright (c) 2018, Kalycito Infotech Private Limited
Copyright (c) 2020, AIIT XUOS Lab
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the copyright holders nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------*/
//------------------------------------------------------------------------------
// includes
//------------------------------------------------------------------------------
#include <common/oplkinc.h>
#include <common/target.h>
#include <common/ftracedebug.h>
#include <unistd.h>
#include <fcntl.h>
#include <signal.h>
#include <time.h>
#include <sys/time.h>
#include <transform.h>
//============================================================================//
// G L O B A L D E F I N I T I O N S //
//============================================================================//
//------------------------------------------------------------------------------
// const defines
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// module global vars
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// global function prototypes
//------------------------------------------------------------------------------
//============================================================================//
// P R I V A T E D E F I N I T I O N S //
//============================================================================//
//------------------------------------------------------------------------------
// const defines
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// local types
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// local vars
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// local function prototypes
//------------------------------------------------------------------------------
//============================================================================//
// P U B L I C F U N C T I O N S //
//============================================================================//
//------------------------------------------------------------------------------
/**
\brief Initialize target specific stuff
The function initialize target specific stuff which is needed to run the
openPOWERLINK stack.
\return The function returns a tOplkError error code.
*/
//------------------------------------------------------------------------------
tOplkError target_init(void)
{
return kErrorOk;
}
//------------------------------------------------------------------------------
/**
\brief Clean up target specific stuff
The function cleans up target specific stuff.
\return The function returns a tOplkError error code.
*/
//------------------------------------------------------------------------------
tOplkError target_cleanup(void)
{
return kErrorOk;
}
//------------------------------------------------------------------------------
/**
\brief Sleep for the specified number of milliseconds
The function makes the calling thread sleep until the number of specified
milliseconds has elapsed.
\param[in] milliSeconds_p Number of milliseconds to sleep
\ingroup module_target
*/
//------------------------------------------------------------------------------
void target_msleep(UINT32 milliSeconds_p)
{
struct timeval timeout;
fd_set readFds;
int maxFd;
int selectRetVal;
unsigned int seconds;
unsigned int microSeconds;
// initialize file descriptor set
maxFd = 0 + 1;
FD_ZERO(&readFds);
// Calculate timeout values
seconds = milliSeconds_p / 1000;
microSeconds = (milliSeconds_p - (seconds * 1000)) * 1000;
// initialize timeout value
timeout.tv_sec = seconds;
timeout.tv_usec = microSeconds;
selectRetVal = select(maxFd, &readFds, NULL, NULL, &timeout);
switch (selectRetVal)
{
case 0: // select timeout occurred, no packet received
break;
case -1: // select error occurred
break;
default: // packet available for receive
break;
}
}
//------------------------------------------------------------------------------
/**
\brief Set IP address of specified Ethernet interface
The function sets the IP address, subnetMask and MTU of an Ethernet
interface.
\param[in] ifName_p Name of Ethernet interface.
\param[in] ipAddress_p IP address to set for interface.
\param[in] subnetMask_p Subnet mask to set for interface.
\param[in] mtu_p MTU to set for interface.
\return The function returns a tOplkError error code.
\ingroup module_target
*/
//------------------------------------------------------------------------------
tOplkError target_setIpAdrs(const char* ifName_p,
UINT32 ipAddress_p,
UINT32 subnetMask_p,
UINT16 mtu_p)
{
UNUSED_PARAMETER(ifName_p);
UNUSED_PARAMETER(ipAddress_p);
UNUSED_PARAMETER(subnetMask_p);
UNUSED_PARAMETER(mtu_p);
return kErrorApiNotSupported;
}
//------------------------------------------------------------------------------
/**
\brief Set default gateway for Ethernet interface
The function sets the default gateway of an Ethernet interface.
\param[in] defaultGateway_p Default gateway to set.
\return The function returns a tOplkError error code.
\ingroup module_target
*/
//------------------------------------------------------------------------------
tOplkError target_setDefaultGateway(UINT32 defaultGateway_p)
{
UNUSED_PARAMETER(defaultGateway_p);
return kErrorApiNotSupported;
}
//------------------------------------------------------------------------------
/**
\brief Enables global interrupt
This function enables/disables global interrupts.
\param[in] fEnable_p TRUE = enable interrupts
FALSE = disable interrupts
\note This function is implemented empty for the sim target
\ingroup module_target
*/
//------------------------------------------------------------------------------
void target_enableGlobalInterrupt(BOOL fEnable_p)
{
UNUSED_PARAMETER(fEnable_p);
}
//------------------------------------------------------------------------------
/**
\brief Set interrupt context flag
This function enables/disables the interrupt context flag. The flag has to be
set when the CPU enters the interrupt context. The flag has to be cleared when
the interrupt context is left.
\param[in] fEnable_p TRUE = enable interrupt context flag
FALSE = disable interrupt context flag
\ingroup module_target
*/
//------------------------------------------------------------------------------
void target_setInterruptContextFlag(BOOL fEnable_p)
{
UNUSED_PARAMETER(fEnable_p);
}
//------------------------------------------------------------------------------
/**
\brief Get interrupt context flag
This function returns the interrupt context flag.
\return The function returns the state of the interrupt context flag.
\ingroup module_target
*/
//------------------------------------------------------------------------------
BOOL target_getInterruptContextFlag(void)
{
return FALSE;
}
//------------------------------------------------------------------------------
/**
\brief Get current system tick
This function returns the current system tick determined by the system timer.
\return Returns the system tick in milliseconds
\ingroup module_target
*/
//------------------------------------------------------------------------------
UINT32 target_getTickCount(void)
{
return PrivGetTickTime();
}
//------------------------------------------------------------------------------
/**
\brief Get current timestamp
The function returns the current timestamp in nanoseconds.
\return The function returns the timestamp in nanoseconds
*/
//------------------------------------------------------------------------------
ULONGLONG target_getCurrentTimestamp(void)
{
// Not implemented for this target
return 0ULL;
}
//------------------------------------------------------------------------------
/**
\brief Set POWERLINK status/error LED
The function sets the POWERLINK status/error LED.
\param[in] ledType_p Determines which LED shall be set/reset.
\param[in] fLedOn_p Set the addressed LED on (TRUE) or off (FALSE).
\return The function returns a tOplkError error code.
\ingroup module_target
*/
//------------------------------------------------------------------------------
tOplkError target_setLed(tLedType ledType_p, BOOL fLedOn_p)
{
UNUSED_PARAMETER(ledType_p);
UNUSED_PARAMETER(fLedOn_p);
return kErrorOk;
}
#if (defined(CONFIG_INCLUDE_SOC_TIME_FORWARD) && defined(CONFIG_INCLUDE_NMT_MN))
//------------------------------------------------------------------------------
/**
\brief Get system time
The function returns the current system timestamp.
\param[out] pNetTime_p Pointer to current system timestamp.
\param[out] pValidSystemTime_p Pointer to flag which is set to indicate the
system time is valid or not.
\return The function returns a tOplkError code.
\ingroup module_target
*/
//------------------------------------------------------------------------------
tOplkError target_getSystemTime(tNetTime* pNetTime_p, BOOL* pValidSystemTime_p)
{
struct timespec currentTime;
if ((pNetTime_p == NULL) || (pValidSystemTime_p == NULL))
return kErrorNoResource;
// Note: clock_gettime() returns 0 for success
if (clock_gettime(CLOCK_REALTIME, &currentTime) != 0)
{
*pValidSystemTime_p = FALSE;
return kErrorGeneralError;
}
if (currentTime.tv_sec < 0)
{
*pValidSystemTime_p = FALSE;
DEBUG_LVL_ERROR_TRACE("%s(): Failed! Invalid time stamp.\n",
__func__);
return kErrorInvalidOperation;
}
pNetTime_p->sec = currentTime.tv_sec;
pNetTime_p->nsec = currentTime.tv_nsec;
// Set the flag to indicate the system time is valid
*pValidSystemTime_p = TRUE;
return kErrorOk;
}
#endif
//============================================================================//
// P R I V A T E F U N C T I O N S //
//============================================================================//
/// \name Private Functions
/// \{
/// \}

View File

@ -0,0 +1,634 @@
/**
********************************************************************************
\file edrv-xiuos.c
\brief Implementation of XiUOS Ethernet driver
This file contains the implementation of the XiUOS Ethernet driver.
\ingroup module_edrv
*******************************************************************************/
/*------------------------------------------------------------------------------
Copyright (c) 2017, BE.services GmbH
Copyright (c) 2017, B&R Industrial Automation GmbH
Copyright (c) 2020, AIIT XUOS Lab
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the copyright holders nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------*/
//------------------------------------------------------------------------------
// includes
//------------------------------------------------------------------------------
#include <common/oplkinc.h>
#include <common/ftracedebug.h>
#include <kernel/edrv.h>
#include <common/target.h>
#include <unistd.h>
#include <string.h>
#include <semaphore.h>
#include <pthread.h>
#include <errno.h>
#include <fcntl.h>
#include <xsconfig.h>
//============================================================================//
// G L O B A L D E F I N I T I O N S //
//============================================================================//
//------------------------------------------------------------------------------
// const defines
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// module global vars
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// global function prototypes
//------------------------------------------------------------------------------
//============================================================================//
// P R I V A T E D E F I N I T I O N S //
//============================================================================//
//------------------------------------------------------------------------------
// const defines
//------------------------------------------------------------------------------
#define EDRV_MAX_FRAME_SIZE 0x0600
#define PROTO_PLK 0x88AB
#ifndef PACKET_QDISC_BYPASS
#define PACKET_QDISC_BYPASS 20
#endif
//------------------------------------------------------------------------------
// local types
//------------------------------------------------------------------------------
/**
\brief Structure describing an instance of the Edrv
This structure describes an instance of the Ethernet driver.
*/
typedef struct
{
tEdrvInitParam initParam; ///< Init parameters
tEdrvTxBuffer* pTransmittedTxBufferLastEntry; ///< Pointer to the last entry of the transmitted TX buffer
tEdrvTxBuffer* pTransmittedTxBufferFirstEntry; ///< Pointer to the first entry of the transmitted Tx buffer
pthread_mutex_t mutex; ///< Mutex for locking of critical sections
sem_t syncSem; ///< Semaphore for signaling the start of the worker thread
int sock; ///< Raw socket handle
pthread_t hThread; ///< Handle of the worker thread
BOOL fStartCommunication; ///< Flag to indicate, that communication is started. Set to false on exit
BOOL fThreadIsExited; ///< Set by thread if already exited
} tEdrvInstance;
//------------------------------------------------------------------------------
// local vars
//------------------------------------------------------------------------------
static tEdrvInstance edrvInstance_l;
//------------------------------------------------------------------------------
// local function prototypes
//------------------------------------------------------------------------------
static void packetHandler(void* pParam_p,
const int frameSize_p,
void* pPktData_p);
static void* workerThread(void* pArgument_p);
static void getMacAdrs(const char* pIfName_p, UINT8* pMacAddr_p);
static BOOL getLinkStatus(const char* pIfName_p);
//------------------------------------------------------------------------------
// XiUOS implementaion of raw socket
//------------------------------------------------------------------------------
//============================================================================//
// P U B L I C F U N C T I O N S //
//============================================================================//
//------------------------------------------------------------------------------
/**
\brief Ethernet driver initialization
This function initializes the Ethernet driver.
\param[in] pEdrvInitParam_p Edrv initialization parameters
\return The function returns a tOplkError error code.
\ingroup module_edrv
*/
//------------------------------------------------------------------------------
tOplkError edrv_init(const tEdrvInitParam* pEdrvInitParam_p)
{
struct sched_param schedParam;
// Check parameter validity
ASSERT(pEdrvInitParam_p != NULL);
// Clear instance structure
OPLK_MEMSET(&edrvInstance_l, 0, sizeof(edrvInstance_l));
if (pEdrvInitParam_p->pDevName == NULL)
return kErrorEdrvInit;
// Save the init data
edrvInstance_l.initParam = *pEdrvInitParam_p;
edrvInstance_l.fStartCommunication = TRUE;
edrvInstance_l.fThreadIsExited = FALSE;
// If no MAC address was specified read MAC address of used
// Ethernet interface
if ((edrvInstance_l.initParam.aMacAddr[0] == 0) &&
(edrvInstance_l.initParam.aMacAddr[1] == 0) &&
(edrvInstance_l.initParam.aMacAddr[2] == 0) &&
(edrvInstance_l.initParam.aMacAddr[3] == 0) &&
(edrvInstance_l.initParam.aMacAddr[4] == 0) &&
(edrvInstance_l.initParam.aMacAddr[5] == 0))
{ // read MAC address from controller
getMacAdrs(edrvInstance_l.initParam.pDevName,
edrvInstance_l.initParam.aMacAddr);
}
if (pthread_mutex_init(&edrvInstance_l.mutex, NULL) != 0)
{
DEBUG_LVL_ERROR_TRACE("%s() couldn't init mutex\n", __func__);
return kErrorEdrvInit;
}
edrvInstance_l.sock = open(ETHERNET_UART_NAME, O_RDWR);
if (edrvInstance_l.sock < 0)
{
DEBUG_LVL_ERROR_TRACE("%s() cannot open socket. Error = %s\n", __func__, strerror(errno));
return kErrorEdrvInit;
}
if (sem_init(&edrvInstance_l.syncSem, 0, 0) != 0)
{
DEBUG_LVL_ERROR_TRACE("%s() couldn't init semaphore\n", __func__);
return kErrorEdrvInit;
}
if (pthread_create(&edrvInstance_l.hThread, NULL,
workerThread, &edrvInstance_l) != 0)
{
DEBUG_LVL_ERROR_TRACE("%s() Couldn't create worker thread!\n", __func__);
return kErrorEdrvInit;
}
schedParam.sched_priority = CONFIG_THREAD_PRIORITY_MEDIUM;
if (pthread_setschedparam(edrvInstance_l.hThread, SCHED_FIFO, &schedParam) != 0)
{
DEBUG_LVL_ERROR_TRACE("%s() couldn't set thread scheduling parameters!\n", __func__);
}
#if (defined(__GLIBC__) && (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 12))
pthread_setname_np(edrvInstance_l.hThread, "oplk-edrvrawsock");
#endif
// wait until thread is started
sem_wait(&edrvInstance_l.syncSem);
return kErrorOk;
}
//------------------------------------------------------------------------------
/**
\brief Shut down Ethernet driver
This function shuts down the Ethernet driver.
\return The function returns a tOplkError error code.
\ingroup module_edrv
*/
//------------------------------------------------------------------------------
tOplkError edrv_exit(void)
{
edrvInstance_l.fStartCommunication = FALSE;
// Wait to terminate thread safely
usleep(100000);
if (edrvInstance_l.fThreadIsExited)
pthread_cancel(edrvInstance_l.hThread);
pthread_mutex_destroy(&edrvInstance_l.mutex);
// Close the socket
close(edrvInstance_l.sock);
// Clear instance structure
OPLK_MEMSET(&edrvInstance_l, 0, sizeof(edrvInstance_l));
return kErrorOk;
}
//------------------------------------------------------------------------------
/**
\brief Get MAC address
This function returns the MAC address of the Ethernet controller
\return The function returns a pointer to the MAC address.
\ingroup module_edrv
*/
//------------------------------------------------------------------------------
const UINT8* edrv_getMacAddr(void)
{
return edrvInstance_l.initParam.aMacAddr;
}
//------------------------------------------------------------------------------
/**
\brief Send Tx buffer
This function sends the Tx buffer.
\param[in,out] pBuffer_p Tx buffer descriptor
\return The function returns a tOplkError error code.
\ingroup module_edrv
*/
//------------------------------------------------------------------------------
tOplkError edrv_sendTxBuffer(tEdrvTxBuffer* pBuffer_p)
{
int sockRet;
// Check parameter validity
ASSERT(pBuffer_p != NULL);
FTRACE_MARKER("%s", __func__);
if (pBuffer_p->txBufferNumber.pArg != NULL)
return kErrorInvalidOperation;
if (getLinkStatus(edrvInstance_l.initParam.pDevName) == FALSE)
{
/* If there is no link, we pretend that the packet is sent and immediately call
* tx handler. Otherwise the stack would hang! */
if (pBuffer_p->pfnTxHandler != NULL)
{
pBuffer_p->pfnTxHandler(pBuffer_p);
}
}
else
{
pthread_mutex_lock(&edrvInstance_l.mutex);
if (edrvInstance_l.pTransmittedTxBufferLastEntry == NULL)
{
edrvInstance_l.pTransmittedTxBufferLastEntry = pBuffer_p;
edrvInstance_l.pTransmittedTxBufferFirstEntry = pBuffer_p;
}
else
{
edrvInstance_l.pTransmittedTxBufferLastEntry->txBufferNumber.pArg = pBuffer_p;
edrvInstance_l.pTransmittedTxBufferLastEntry = pBuffer_p;
}
pthread_mutex_unlock(&edrvInstance_l.mutex);
sockRet = write(edrvInstance_l.sock, (u_char*)pBuffer_p->pBuffer, (int)pBuffer_p->txFrameSize);
if (sockRet < 0)
{
DEBUG_LVL_EDRV_TRACE("%s() send() returned %d\n", __func__, sockRet);
return kErrorInvalidOperation;
}
else
{
packetHandler((u_char*)&edrvInstance_l, sockRet, pBuffer_p->pBuffer);
}
}
return kErrorOk;
}
//------------------------------------------------------------------------------
/**
\brief Allocate Tx buffer
This function allocates a Tx buffer.
\param[in,out] pBuffer_p Tx buffer descriptor
\return The function returns a tOplkError error code.
\ingroup module_edrv
*/
//------------------------------------------------------------------------------
tOplkError edrv_allocTxBuffer(tEdrvTxBuffer* pBuffer_p)
{
// Check parameter validity
ASSERT(pBuffer_p != NULL);
if (pBuffer_p->maxBufferSize > EDRV_MAX_FRAME_SIZE)
return kErrorEdrvNoFreeBufEntry;
// allocate buffer with malloc
pBuffer_p->pBuffer = OPLK_MALLOC(pBuffer_p->maxBufferSize);
if (pBuffer_p->pBuffer == NULL)
return kErrorEdrvNoFreeBufEntry;
pBuffer_p->txBufferNumber.pArg = NULL;
return kErrorOk;
}
//------------------------------------------------------------------------------
/**
\brief Free Tx buffer
This function releases the Tx buffer.
\param[in,out] pBuffer_p Tx buffer descriptor
\return The function returns a tOplkError error code.
\ingroup module_edrv
*/
//------------------------------------------------------------------------------
tOplkError edrv_freeTxBuffer(tEdrvTxBuffer* pBuffer_p)
{
void* pBuffer;
// Check parameter validity
ASSERT(pBuffer_p != NULL);
pBuffer = pBuffer_p->pBuffer;
// mark buffer as free, before actually freeing it
pBuffer_p->pBuffer = NULL;
OPLK_FREE(pBuffer);
return kErrorOk;
}
//------------------------------------------------------------------------------
/**
\brief Change Rx filter setup
This function changes the Rx filter setup. The parameter entryChanged_p
selects the Rx filter entry that shall be changed and \p changeFlags_p determines
the property.
If \p entryChanged_p is equal or larger count_p all Rx filters shall be changed.
\note Rx filters are not supported by this driver!
\param[in,out] pFilter_p Base pointer of Rx filter array
\param[in] count_p Number of Rx filter array entries
\param[in] entryChanged_p Index of Rx filter entry that shall be changed
\param[in] changeFlags_p Bit mask that selects the changing Rx filter property
\return The function returns a tOplkError error code.
\ingroup module_edrv
*/
//------------------------------------------------------------------------------
tOplkError edrv_changeRxFilter(tEdrvFilter* pFilter_p,
UINT count_p,
UINT entryChanged_p,
UINT changeFlags_p)
{
UNUSED_PARAMETER(pFilter_p);
UNUSED_PARAMETER(count_p);
UNUSED_PARAMETER(entryChanged_p);
UNUSED_PARAMETER(changeFlags_p);
return kErrorOk;
}
//------------------------------------------------------------------------------
/**
\brief Clear multicast address entry
This function removes the multicast entry from the Ethernet controller.
\note The multicast filters are not supported by this driver.
\param[in] pMacAddr_p Multicast address
\return The function returns a tOplkError error code.
\ingroup module_edrv
*/
//------------------------------------------------------------------------------
tOplkError edrv_clearRxMulticastMacAddr(const UINT8* pMacAddr_p)
{
UNUSED_PARAMETER(pMacAddr_p);
return kErrorOk;
}
//------------------------------------------------------------------------------
/**
\brief Set multicast address entry
This function sets a multicast entry into the Ethernet controller.
\note The multicast filters are not supported by this driver.
\param[in] pMacAddr_p Multicast address.
\return The function returns a tOplkError error code.
\ingroup module_edrv
*/
//------------------------------------------------------------------------------
tOplkError edrv_setRxMulticastMacAddr(const UINT8* pMacAddr_p)
{
UNUSED_PARAMETER(pMacAddr_p);
return kErrorOk;
}
//============================================================================//
// P R I V A T E F U N C T I O N S //
//============================================================================//
/// \name Private Functions
/// \{
//------------------------------------------------------------------------------
/**
\brief Edrv packet handler
This function is the packet handler forwarding the frames to the dllk.
\param[in,out] pParam_p User specific pointer pointing to the instance structure
\param[in] frameSize_p Framesize information
\param[in] pPktData_p Packet buffer
*/
//------------------------------------------------------------------------------
static void packetHandler(void* pParam_p,
const int frameSize_p,
void* pPktData_p)
{
tEdrvInstance* pInstance = (tEdrvInstance*)pParam_p;
tEdrvRxBuffer rxBuffer;
if (OPLK_MEMCMP((UINT8*)pPktData_p + 6, pInstance->initParam.aMacAddr, 6) != 0)
{ // filter out self generated traffic
rxBuffer.bufferInFrame = kEdrvBufferLastInFrame;
rxBuffer.rxFrameSize = frameSize_p;
rxBuffer.pBuffer = pPktData_p;
FTRACE_MARKER("%s RX", __func__);
pInstance->initParam.pfnRxHandler(&rxBuffer);
}
else
{ // self generated traffic
FTRACE_MARKER("%s TX-receive", __func__);
if (pInstance->pTransmittedTxBufferFirstEntry != NULL)
{
tEdrvTxBuffer* pTxBuffer = pInstance->pTransmittedTxBufferFirstEntry;
if (pTxBuffer->pBuffer != NULL)
{
if (OPLK_MEMCMP(pPktData_p, pTxBuffer->pBuffer, 6) == 0)
{ // compare with packet buffer with destination MAC
pthread_mutex_lock(&pInstance->mutex);
pInstance->pTransmittedTxBufferFirstEntry = (tEdrvTxBuffer*)pInstance->pTransmittedTxBufferFirstEntry->txBufferNumber.pArg;
if (pInstance->pTransmittedTxBufferFirstEntry == NULL)
{
pInstance->pTransmittedTxBufferLastEntry = NULL;
}
pthread_mutex_unlock(&pInstance->mutex);
pTxBuffer->txBufferNumber.pArg = NULL;
if (pTxBuffer->pfnTxHandler != NULL)
{
pTxBuffer->pfnTxHandler(pTxBuffer);
}
}
else
{
TRACE("%s: no matching TxB: DstMAC=%02X%02X%02X%02X%02X%02X\n",
__func__,
(UINT)((UINT8*)pPktData_p)[0],
(UINT)((UINT8*)pPktData_p)[1],
(UINT)((UINT8*)pPktData_p)[2],
(UINT)((UINT8*)pPktData_p)[3],
(UINT)((UINT8*)pPktData_p)[4],
(UINT)((UINT8*)pPktData_p)[5]);
TRACE(" current TxB %p: DstMAC=%02X%02X%02X%02X%02X%02X\n",
(void*)pTxBuffer,
(UINT)((UINT8*)(pTxBuffer->pBuffer))[0],
(UINT)((UINT8*)(pTxBuffer->pBuffer))[1],
(UINT)((UINT8*)(pTxBuffer->pBuffer))[2],
(UINT)((UINT8*)(pTxBuffer->pBuffer))[3],
(UINT)((UINT8*)(pTxBuffer->pBuffer))[4],
(UINT)((UINT8*)(pTxBuffer->pBuffer))[5]);
}
}
}
else
{
TRACE("%s: no TxB: DstMAC=%02X%02X%02X%02X%02X%02X\n", __func__,
((UINT8*)pPktData_p)[0],
((UINT8*)pPktData_p)[1],
((UINT8*)pPktData_p)[2],
((UINT8*)pPktData_p)[3],
((UINT8*)pPktData_p)[4],
((UINT8*)pPktData_p)[5]);
}
}
}
//------------------------------------------------------------------------------
/**
\brief Edrv worker thread
This function implements the edrv worker thread. It is responsible to receive frames
\param[in,out] pArgument_p User specific pointer pointing to the instance structure
\return The function returns a thread error code.
*/
//------------------------------------------------------------------------------
static void* workerThread(void* pArgument_p)
{
tEdrvInstance* pInstance = (tEdrvInstance*)pArgument_p;
int rawSockRet;
u_char aBuffer[EDRV_MAX_FRAME_SIZE];
// signal that thread is successfully started
sem_post(&pInstance->syncSem);
while (edrvInstance_l.fStartCommunication)
{
rawSockRet = read(edrvInstance_l.sock, aBuffer, EDRV_MAX_FRAME_SIZE);
if (rawSockRet > 0)
{
packetHandler(pInstance, rawSockRet, aBuffer);
}
}
edrvInstance_l.fThreadIsExited = TRUE;
return NULL;
}
//------------------------------------------------------------------------------
/**
\brief Get Edrv MAC address
This function gets the interface's MAC address.
\param[in] pIfName_p Ethernet interface device name
\param[out] pMacAddr_p Pointer to store MAC address
*/
//------------------------------------------------------------------------------
static void getMacAdrs(const char* pIfName_p, UINT8* pMacAddr_p)
{
UNUSED_PARAMETER(pIfName_p);
/* Generate a MAC address randomly */
pMacAddr_p[0] = 0x52;
pMacAddr_p[1] = 0x54;
pMacAddr_p[2] = 0x98;
pMacAddr_p[3] = 0x76;
pMacAddr_p[4] = 0x54;
pMacAddr_p[5] = target_getTickCount();
}
//------------------------------------------------------------------------------
/**
\brief Get link status
This function returns the interface link status.
\param[in] pIfName_p Ethernet interface device name
\return The function returns the link status.
\retval TRUE The link is up.
\retval FALSE The link is down.
*/
//------------------------------------------------------------------------------
static BOOL getLinkStatus(const char* pIfName_p)
{
UNUSED_PARAMETER(pIfName_p);
return TRUE;
}

Some files were not shown because too many files have changed in this diff Show More