From 85b92eabae5fb1557a72ad6030565a4e04068fb0 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 16 Nov 2015 20:38:15 +0100 Subject: remove Werror, breaks compile with gcc 5.2.0 and -O3 --- package/bcm28xx-vc/Makefile | 2 +- ...applications_android_apps_vidtex_CMakeLists_txt | 10 + ...t_applications_linux_apps_gencmd_CMakeLists_txt | 11 + ...applications_linux_apps_raspicam_CMakeLists_txt | 11 + ...-host_applications_linux_apps_raspicam_Makefile | 718 +++++++++++++++++++++ ...ost_applications_linux_apps_smem_CMakeLists_txt | 11 + ...applications_linux_libs_bcm_host_CMakeLists_txt | 11 + ...-host_applications_linux_libs_sm_CMakeLists_txt | 11 + .../patches/patch-interface_mmal_CMakeLists_txt | 11 + .../patches/patch-interface_vcos_CMakeLists_txt | 11 + .../patch-interface_vcos_pthreads_CMakeLists_txt | 11 + ...nterface_vmcs_host_linux_vcfiled_CMakeLists_txt | 9 + 12 files changed, 826 insertions(+), 1 deletion(-) create mode 100644 package/bcm28xx-vc/patches/patch-host_applications_android_apps_vidtex_CMakeLists_txt create mode 100644 package/bcm28xx-vc/patches/patch-host_applications_linux_apps_gencmd_CMakeLists_txt create mode 100644 package/bcm28xx-vc/patches/patch-host_applications_linux_apps_raspicam_CMakeLists_txt create mode 100644 package/bcm28xx-vc/patches/patch-host_applications_linux_apps_raspicam_Makefile create mode 100644 package/bcm28xx-vc/patches/patch-host_applications_linux_apps_smem_CMakeLists_txt create mode 100644 package/bcm28xx-vc/patches/patch-host_applications_linux_libs_bcm_host_CMakeLists_txt create mode 100644 package/bcm28xx-vc/patches/patch-host_applications_linux_libs_sm_CMakeLists_txt create mode 100644 package/bcm28xx-vc/patches/patch-interface_mmal_CMakeLists_txt create mode 100644 package/bcm28xx-vc/patches/patch-interface_vcos_CMakeLists_txt create mode 100644 package/bcm28xx-vc/patches/patch-interface_vcos_pthreads_CMakeLists_txt create mode 100644 package/bcm28xx-vc/patches/patch-interface_vmcs_host_linux_vcfiled_CMakeLists_txt (limited to 'package/bcm28xx-vc') diff --git a/package/bcm28xx-vc/Makefile b/package/bcm28xx-vc/Makefile index 1ad1601ad..78873c405 100644 --- a/package/bcm28xx-vc/Makefile +++ b/package/bcm28xx-vc/Makefile @@ -5,7 +5,7 @@ include $(ADK_TOPDIR)/rules.mk PKG_NAME:= bcm28xx-vc PKG_VERSION:= c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 -PKG_RELEASE:= 1 +PKG_RELEASE:= 2 PKG_DESCR:= videocore tools and libraries PKG_SECTION:= libs/video PKG_BUILDDEP:= cmake-host diff --git a/package/bcm28xx-vc/patches/patch-host_applications_android_apps_vidtex_CMakeLists_txt b/package/bcm28xx-vc/patches/patch-host_applications_android_apps_vidtex_CMakeLists_txt new file mode 100644 index 000000000..a36625f8e --- /dev/null +++ b/package/bcm28xx-vc/patches/patch-host_applications_android_apps_vidtex_CMakeLists_txt @@ -0,0 +1,10 @@ +--- bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8.orig/host_applications/android/apps/vidtex/CMakeLists.txt 2015-10-27 10:59:47.000000000 +0100 ++++ bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8/host_applications/android/apps/vidtex/CMakeLists.txt 2015-11-16 20:31:58.396542125 +0100 +@@ -1,6 +1,6 @@ + cmake_minimum_required(VERSION 2.8) + +-SET(COMPILE_DEFINITIONS -Werror -Wall) ++SET(COMPILE_DEFINITIONS -Wall) + include_directories(${PROJECT_SOURCE_DIR}/host_applications/linux/libs/bcm_host/include) + + set (VIDTEX_SOURCES diff --git a/package/bcm28xx-vc/patches/patch-host_applications_linux_apps_gencmd_CMakeLists_txt b/package/bcm28xx-vc/patches/patch-host_applications_linux_apps_gencmd_CMakeLists_txt new file mode 100644 index 000000000..d67980b11 --- /dev/null +++ b/package/bcm28xx-vc/patches/patch-host_applications_linux_apps_gencmd_CMakeLists_txt @@ -0,0 +1,11 @@ +--- bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8.orig/host_applications/linux/apps/gencmd/CMakeLists.txt 2015-10-27 10:59:47.000000000 +0100 ++++ bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8/host_applications/linux/apps/gencmd/CMakeLists.txt 2015-11-16 20:30:46.553286656 +0100 +@@ -4,7 +4,7 @@ if (WIN32) + set(VCOS_PLATFORM win32) + else () + set(VCOS_PLATFORM pthreads) +- add_definitions(-Wall -Werror) ++ add_definitions(-Wall) + endif () + + include_directories( ../../../.. diff --git a/package/bcm28xx-vc/patches/patch-host_applications_linux_apps_raspicam_CMakeLists_txt b/package/bcm28xx-vc/patches/patch-host_applications_linux_apps_raspicam_CMakeLists_txt new file mode 100644 index 000000000..f1ffd510a --- /dev/null +++ b/package/bcm28xx-vc/patches/patch-host_applications_linux_apps_raspicam_CMakeLists_txt @@ -0,0 +1,11 @@ +--- bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8.orig/host_applications/linux/apps/raspicam/CMakeLists.txt 2015-10-27 10:59:48.000000000 +0100 ++++ bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8/host_applications/linux/apps/raspicam/CMakeLists.txt 2015-11-16 20:30:58.288511661 +0100 +@@ -1,8 +1,6 @@ + + # raspistill/raspivid/raspiyuv + +-SET(COMPILE_DEFINITIONS -Werror) +- + include_directories(${PROJECT_SOURCE_DIR}/host_applications/linux/libs/bcm_host/include) + include_directories(${PROJECT_SOURCE_DIR}/host_applications/linux/apps/raspicam/) + diff --git a/package/bcm28xx-vc/patches/patch-host_applications_linux_apps_raspicam_Makefile b/package/bcm28xx-vc/patches/patch-host_applications_linux_apps_raspicam_Makefile new file mode 100644 index 000000000..1b2bcaed0 --- /dev/null +++ b/package/bcm28xx-vc/patches/patch-host_applications_linux_apps_raspicam_Makefile @@ -0,0 +1,718 @@ +--- bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8.orig/host_applications/linux/apps/raspicam/Makefile 2015-10-27 10:59:48.000000000 +0100 ++++ bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8/host_applications/linux/apps/raspicam/Makefile 2015-11-16 09:31:40.479736506 +0100 +@@ -1,6 +1,711 @@ +-OBJS=RaspiCamControl.o RaspiCLI.o RaspiPreview.o RaspiStill.o +-BIN=raspicam.bin +-LDFLAGS+=-lmmal -lmmal_core -lmmal_util ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Unix Makefiles" Generator, CMake Version 3.2 + +-include ../Makefile.include ++# 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 = /home/wbx/kodi-rpi2/host_x86_64-linux-gnu/usr/bin/cmake ++ ++# The command to remove a file. ++RM = /home/wbx/kodi-rpi2/host_x86_64-linux-gnu/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/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 ++ ++# The top-level build directory on which CMake was run. ++CMAKE_BINARY_DIR = /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 ++ ++#============================================================================= ++# 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..." ++ /home/wbx/kodi-rpi2/host_x86_64-linux-gnu/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: install/strip ++.PHONY : install/strip/fast ++ ++# Special rule for the target edit_cache ++edit_cache: ++ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." ++ /home/wbx/kodi-rpi2/host_x86_64-linux-gnu/usr/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) ++.PHONY : edit_cache ++ ++# Special rule for the target edit_cache ++edit_cache/fast: edit_cache ++.PHONY : edit_cache/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..." ++ /home/wbx/kodi-rpi2/host_x86_64-linux-gnu/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..." ++ /home/wbx/kodi-rpi2/host_x86_64-linux-gnu/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..." ++ /home/wbx/kodi-rpi2/host_x86_64-linux-gnu/usr/bin/cmake -P cmake_install.cmake ++.PHONY : install/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 package ++package: preinstall ++ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && /home/wbx/kodi-rpi2/host_x86_64-linux-gnu/usr/bin/cpack --config ./CPackConfig.cmake ++.PHONY : package ++ ++# Special rule for the target package ++package/fast: package ++.PHONY : package/fast ++ ++# Special rule for the target package_source ++package_source: ++ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && /home/wbx/kodi-rpi2/host_x86_64-linux-gnu/usr/bin/cpack --config ./CPackSourceConfig.cmake /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8/CPackSourceConfig.cmake ++.PHONY : package_source ++ ++# Special rule for the target package_source ++package_source/fast: package_source ++.PHONY : package_source/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..." ++ /home/wbx/kodi-rpi2/host_x86_64-linux-gnu/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: install/local ++.PHONY : install/local/fast ++ ++# The main all target ++all: cmake_check_build_system ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(CMAKE_COMMAND) -E cmake_progress_start /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8/CMakeFiles /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8/host_applications/linux/apps/raspicam/CMakeFiles/progress.marks ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f CMakeFiles/Makefile2 host_applications/linux/apps/raspicam/all ++ $(CMAKE_COMMAND) -E cmake_progress_start /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8/CMakeFiles 0 ++.PHONY : all ++ ++# The main clean target ++clean: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f CMakeFiles/Makefile2 host_applications/linux/apps/raspicam/clean ++.PHONY : clean ++ ++# The main clean target ++clean/fast: clean ++.PHONY : clean/fast ++ ++# Prepare targets for installation. ++preinstall: all ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f CMakeFiles/Makefile2 host_applications/linux/apps/raspicam/preinstall ++.PHONY : preinstall ++ ++# Prepare targets for installation. ++preinstall/fast: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f CMakeFiles/Makefile2 host_applications/linux/apps/raspicam/preinstall ++.PHONY : preinstall/fast ++ ++# clear depends ++depend: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 ++.PHONY : depend ++ ++# Convenience name for target. ++host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/rule: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f CMakeFiles/Makefile2 host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/rule ++.PHONY : host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/rule ++ ++# Convenience name for target. ++raspistill: host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/rule ++.PHONY : raspistill ++ ++# fast build rule for target. ++raspistill/fast: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build ++.PHONY : raspistill/fast ++ ++# Convenience name for target. ++host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/rule: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f CMakeFiles/Makefile2 host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/rule ++.PHONY : host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/rule ++ ++# Convenience name for target. ++raspivid: host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/rule ++.PHONY : raspivid ++ ++# fast build rule for target. ++raspivid/fast: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/build ++.PHONY : raspivid/fast ++ ++# Convenience name for target. ++host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/rule: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f CMakeFiles/Makefile2 host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/rule ++.PHONY : host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/rule ++ ++# Convenience name for target. ++raspividyuv: host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/rule ++.PHONY : raspividyuv ++ ++# fast build rule for target. ++raspividyuv/fast: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/build ++.PHONY : raspividyuv/fast ++ ++# Convenience name for target. ++host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/rule: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f CMakeFiles/Makefile2 host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/rule ++.PHONY : host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/rule ++ ++# Convenience name for target. ++raspiyuv: host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/rule ++.PHONY : raspiyuv ++ ++# fast build rule for target. ++raspiyuv/fast: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build ++.PHONY : raspiyuv/fast ++ ++RaspiCLI.o: RaspiCLI.c.o ++.PHONY : RaspiCLI.o ++ ++# target to build an object file ++RaspiCLI.c.o: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiCLI.c.o ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/RaspiCLI.c.o ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/RaspiCLI.c.o ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiCLI.c.o ++.PHONY : RaspiCLI.c.o ++ ++RaspiCLI.i: RaspiCLI.c.i ++.PHONY : RaspiCLI.i ++ ++# target to preprocess a source file ++RaspiCLI.c.i: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiCLI.c.i ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/RaspiCLI.c.i ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/RaspiCLI.c.i ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiCLI.c.i ++.PHONY : RaspiCLI.c.i ++ ++RaspiCLI.s: RaspiCLI.c.s ++.PHONY : RaspiCLI.s ++ ++# target to generate assembly for a file ++RaspiCLI.c.s: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiCLI.c.s ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/RaspiCLI.c.s ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/RaspiCLI.c.s ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiCLI.c.s ++.PHONY : RaspiCLI.c.s ++ ++RaspiCamControl.o: RaspiCamControl.c.o ++.PHONY : RaspiCamControl.o ++ ++# target to build an object file ++RaspiCamControl.c.o: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiCamControl.c.o ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/RaspiCamControl.c.o ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/RaspiCamControl.c.o ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiCamControl.c.o ++.PHONY : RaspiCamControl.c.o ++ ++RaspiCamControl.i: RaspiCamControl.c.i ++.PHONY : RaspiCamControl.i ++ ++# target to preprocess a source file ++RaspiCamControl.c.i: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiCamControl.c.i ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/RaspiCamControl.c.i ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/RaspiCamControl.c.i ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiCamControl.c.i ++.PHONY : RaspiCamControl.c.i ++ ++RaspiCamControl.s: RaspiCamControl.c.s ++.PHONY : RaspiCamControl.s ++ ++# target to generate assembly for a file ++RaspiCamControl.c.s: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiCamControl.c.s ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/RaspiCamControl.c.s ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/RaspiCamControl.c.s ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiCamControl.c.s ++.PHONY : RaspiCamControl.c.s ++ ++RaspiPreview.o: RaspiPreview.c.o ++.PHONY : RaspiPreview.o ++ ++# target to build an object file ++RaspiPreview.c.o: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiPreview.c.o ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/RaspiPreview.c.o ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/RaspiPreview.c.o ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiPreview.c.o ++.PHONY : RaspiPreview.c.o ++ ++RaspiPreview.i: RaspiPreview.c.i ++.PHONY : RaspiPreview.i ++ ++# target to preprocess a source file ++RaspiPreview.c.i: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiPreview.c.i ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/RaspiPreview.c.i ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/RaspiPreview.c.i ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiPreview.c.i ++.PHONY : RaspiPreview.c.i ++ ++RaspiPreview.s: RaspiPreview.c.s ++.PHONY : RaspiPreview.s ++ ++# target to generate assembly for a file ++RaspiPreview.c.s: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiPreview.c.s ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/RaspiPreview.c.s ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/RaspiPreview.c.s ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiPreview.c.s ++.PHONY : RaspiPreview.c.s ++ ++RaspiStill.o: RaspiStill.c.o ++.PHONY : RaspiStill.o ++ ++# target to build an object file ++RaspiStill.c.o: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiStill.c.o ++.PHONY : RaspiStill.c.o ++ ++RaspiStill.i: RaspiStill.c.i ++.PHONY : RaspiStill.i ++ ++# target to preprocess a source file ++RaspiStill.c.i: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiStill.c.i ++.PHONY : RaspiStill.c.i ++ ++RaspiStill.s: RaspiStill.c.s ++.PHONY : RaspiStill.s ++ ++# target to generate assembly for a file ++RaspiStill.c.s: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiStill.c.s ++.PHONY : RaspiStill.c.s ++ ++RaspiStillYUV.o: RaspiStillYUV.c.o ++.PHONY : RaspiStillYUV.o ++ ++# target to build an object file ++RaspiStillYUV.c.o: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiStillYUV.c.o ++.PHONY : RaspiStillYUV.c.o ++ ++RaspiStillYUV.i: RaspiStillYUV.c.i ++.PHONY : RaspiStillYUV.i ++ ++# target to preprocess a source file ++RaspiStillYUV.c.i: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiStillYUV.c.i ++.PHONY : RaspiStillYUV.c.i ++ ++RaspiStillYUV.s: RaspiStillYUV.c.s ++.PHONY : RaspiStillYUV.s ++ ++# target to generate assembly for a file ++RaspiStillYUV.c.s: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiStillYUV.c.s ++.PHONY : RaspiStillYUV.c.s ++ ++RaspiTex.o: RaspiTex.c.o ++.PHONY : RaspiTex.o ++ ++# target to build an object file ++RaspiTex.c.o: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiTex.c.o ++.PHONY : RaspiTex.c.o ++ ++RaspiTex.i: RaspiTex.c.i ++.PHONY : RaspiTex.i ++ ++# target to preprocess a source file ++RaspiTex.c.i: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiTex.c.i ++.PHONY : RaspiTex.c.i ++ ++RaspiTex.s: RaspiTex.c.s ++.PHONY : RaspiTex.s ++ ++# target to generate assembly for a file ++RaspiTex.c.s: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiTex.c.s ++.PHONY : RaspiTex.c.s ++ ++RaspiTexUtil.o: RaspiTexUtil.c.o ++.PHONY : RaspiTexUtil.o ++ ++# target to build an object file ++RaspiTexUtil.c.o: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiTexUtil.c.o ++.PHONY : RaspiTexUtil.c.o ++ ++RaspiTexUtil.i: RaspiTexUtil.c.i ++.PHONY : RaspiTexUtil.i ++ ++# target to preprocess a source file ++RaspiTexUtil.c.i: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiTexUtil.c.i ++.PHONY : RaspiTexUtil.c.i ++ ++RaspiTexUtil.s: RaspiTexUtil.c.s ++.PHONY : RaspiTexUtil.s ++ ++# target to generate assembly for a file ++RaspiTexUtil.c.s: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/RaspiTexUtil.c.s ++.PHONY : RaspiTexUtil.c.s ++ ++RaspiVid.o: RaspiVid.c.o ++.PHONY : RaspiVid.o ++ ++# target to build an object file ++RaspiVid.c.o: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/RaspiVid.c.o ++.PHONY : RaspiVid.c.o ++ ++RaspiVid.i: RaspiVid.c.i ++.PHONY : RaspiVid.i ++ ++# target to preprocess a source file ++RaspiVid.c.i: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/RaspiVid.c.i ++.PHONY : RaspiVid.c.i ++ ++RaspiVid.s: RaspiVid.c.s ++.PHONY : RaspiVid.s ++ ++# target to generate assembly for a file ++RaspiVid.c.s: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspivid.dir/RaspiVid.c.s ++.PHONY : RaspiVid.c.s ++ ++RaspiVidYUV.o: RaspiVidYUV.c.o ++.PHONY : RaspiVidYUV.o ++ ++# target to build an object file ++RaspiVidYUV.c.o: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/RaspiVidYUV.c.o ++.PHONY : RaspiVidYUV.c.o ++ ++RaspiVidYUV.i: RaspiVidYUV.c.i ++.PHONY : RaspiVidYUV.i ++ ++# target to preprocess a source file ++RaspiVidYUV.c.i: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/RaspiVidYUV.c.i ++.PHONY : RaspiVidYUV.c.i ++ ++RaspiVidYUV.s: RaspiVidYUV.c.s ++.PHONY : RaspiVidYUV.s ++ ++# target to generate assembly for a file ++RaspiVidYUV.c.s: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspividyuv.dir/RaspiVidYUV.c.s ++.PHONY : RaspiVidYUV.c.s ++ ++gl_scenes/mirror.o: gl_scenes/mirror.c.o ++.PHONY : gl_scenes/mirror.o ++ ++# target to build an object file ++gl_scenes/mirror.c.o: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/mirror.c.o ++.PHONY : gl_scenes/mirror.c.o ++ ++gl_scenes/mirror.i: gl_scenes/mirror.c.i ++.PHONY : gl_scenes/mirror.i ++ ++# target to preprocess a source file ++gl_scenes/mirror.c.i: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/mirror.c.i ++.PHONY : gl_scenes/mirror.c.i ++ ++gl_scenes/mirror.s: gl_scenes/mirror.c.s ++.PHONY : gl_scenes/mirror.s ++ ++# target to generate assembly for a file ++gl_scenes/mirror.c.s: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/mirror.c.s ++.PHONY : gl_scenes/mirror.c.s ++ ++gl_scenes/models.o: gl_scenes/models.c.o ++.PHONY : gl_scenes/models.o ++ ++# target to build an object file ++gl_scenes/models.c.o: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/models.c.o ++.PHONY : gl_scenes/models.c.o ++ ++gl_scenes/models.i: gl_scenes/models.c.i ++.PHONY : gl_scenes/models.i ++ ++# target to preprocess a source file ++gl_scenes/models.c.i: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/models.c.i ++.PHONY : gl_scenes/models.c.i ++ ++gl_scenes/models.s: gl_scenes/models.c.s ++.PHONY : gl_scenes/models.s ++ ++# target to generate assembly for a file ++gl_scenes/models.c.s: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/models.c.s ++.PHONY : gl_scenes/models.c.s ++ ++gl_scenes/sobel.o: gl_scenes/sobel.c.o ++.PHONY : gl_scenes/sobel.o ++ ++# target to build an object file ++gl_scenes/sobel.c.o: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/sobel.c.o ++.PHONY : gl_scenes/sobel.c.o ++ ++gl_scenes/sobel.i: gl_scenes/sobel.c.i ++.PHONY : gl_scenes/sobel.i ++ ++# target to preprocess a source file ++gl_scenes/sobel.c.i: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/sobel.c.i ++.PHONY : gl_scenes/sobel.c.i ++ ++gl_scenes/sobel.s: gl_scenes/sobel.c.s ++.PHONY : gl_scenes/sobel.s ++ ++# target to generate assembly for a file ++gl_scenes/sobel.c.s: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/sobel.c.s ++.PHONY : gl_scenes/sobel.c.s ++ ++gl_scenes/square.o: gl_scenes/square.c.o ++.PHONY : gl_scenes/square.o ++ ++# target to build an object file ++gl_scenes/square.c.o: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/square.c.o ++.PHONY : gl_scenes/square.c.o ++ ++gl_scenes/square.i: gl_scenes/square.c.i ++.PHONY : gl_scenes/square.i ++ ++# target to preprocess a source file ++gl_scenes/square.c.i: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/square.c.i ++.PHONY : gl_scenes/square.c.i ++ ++gl_scenes/square.s: gl_scenes/square.c.s ++.PHONY : gl_scenes/square.s ++ ++# target to generate assembly for a file ++gl_scenes/square.c.s: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/square.c.s ++.PHONY : gl_scenes/square.c.s ++ ++gl_scenes/teapot.o: gl_scenes/teapot.c.o ++.PHONY : gl_scenes/teapot.o ++ ++# target to build an object file ++gl_scenes/teapot.c.o: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/teapot.c.o ++.PHONY : gl_scenes/teapot.c.o ++ ++gl_scenes/teapot.i: gl_scenes/teapot.c.i ++.PHONY : gl_scenes/teapot.i ++ ++# target to preprocess a source file ++gl_scenes/teapot.c.i: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/teapot.c.i ++.PHONY : gl_scenes/teapot.c.i ++ ++gl_scenes/teapot.s: gl_scenes/teapot.c.s ++.PHONY : gl_scenes/teapot.s ++ ++# target to generate assembly for a file ++gl_scenes/teapot.c.s: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/teapot.c.s ++.PHONY : gl_scenes/teapot.c.s ++ ++gl_scenes/yuv.o: gl_scenes/yuv.c.o ++.PHONY : gl_scenes/yuv.o ++ ++# target to build an object file ++gl_scenes/yuv.c.o: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/yuv.c.o ++.PHONY : gl_scenes/yuv.c.o ++ ++gl_scenes/yuv.i: gl_scenes/yuv.c.i ++.PHONY : gl_scenes/yuv.i ++ ++# target to preprocess a source file ++gl_scenes/yuv.c.i: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/yuv.c.i ++.PHONY : gl_scenes/yuv.c.i ++ ++gl_scenes/yuv.s: gl_scenes/yuv.c.s ++.PHONY : gl_scenes/yuv.s ++ ++# target to generate assembly for a file ++gl_scenes/yuv.c.s: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/yuv.c.s ++.PHONY : gl_scenes/yuv.c.s ++ ++tga.o: tga.c.o ++.PHONY : tga.o ++ ++# target to build an object file ++tga.c.o: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/tga.c.o ++.PHONY : tga.c.o ++ ++tga.i: tga.c.i ++.PHONY : tga.i ++ ++# target to preprocess a source file ++tga.c.i: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/tga.c.i ++.PHONY : tga.c.i ++ ++tga.s: tga.c.s ++.PHONY : tga.s ++ ++# target to generate assembly for a file ++tga.c.s: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/tga.c.s ++.PHONY : tga.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 "... raspividyuv" ++ @echo "... install/strip" ++ @echo "... edit_cache" ++ @echo "... rebuild_cache" ++ @echo "... install" ++ @echo "... raspiyuv" ++ @echo "... list_install_components" ++ @echo "... package" ++ @echo "... raspivid" ++ @echo "... package_source" ++ @echo "... raspistill" ++ @echo "... install/local" ++ @echo "... RaspiCLI.o" ++ @echo "... RaspiCLI.i" ++ @echo "... RaspiCLI.s" ++ @echo "... RaspiCamControl.o" ++ @echo "... RaspiCamControl.i" ++ @echo "... RaspiCamControl.s" ++ @echo "... RaspiPreview.o" ++ @echo "... RaspiPreview.i" ++ @echo "... RaspiPreview.s" ++ @echo "... RaspiStill.o" ++ @echo "... RaspiStill.i" ++ @echo "... RaspiStill.s" ++ @echo "... RaspiStillYUV.o" ++ @echo "... RaspiStillYUV.i" ++ @echo "... RaspiStillYUV.s" ++ @echo "... RaspiTex.o" ++ @echo "... RaspiTex.i" ++ @echo "... RaspiTex.s" ++ @echo "... RaspiTexUtil.o" ++ @echo "... RaspiTexUtil.i" ++ @echo "... RaspiTexUtil.s" ++ @echo "... RaspiVid.o" ++ @echo "... RaspiVid.i" ++ @echo "... RaspiVid.s" ++ @echo "... RaspiVidYUV.o" ++ @echo "... RaspiVidYUV.i" ++ @echo "... RaspiVidYUV.s" ++ @echo "... gl_scenes/mirror.o" ++ @echo "... gl_scenes/mirror.i" ++ @echo "... gl_scenes/mirror.s" ++ @echo "... gl_scenes/models.o" ++ @echo "... gl_scenes/models.i" ++ @echo "... gl_scenes/models.s" ++ @echo "... gl_scenes/sobel.o" ++ @echo "... gl_scenes/sobel.i" ++ @echo "... gl_scenes/sobel.s" ++ @echo "... gl_scenes/square.o" ++ @echo "... gl_scenes/square.i" ++ @echo "... gl_scenes/square.s" ++ @echo "... gl_scenes/teapot.o" ++ @echo "... gl_scenes/teapot.i" ++ @echo "... gl_scenes/teapot.s" ++ @echo "... gl_scenes/yuv.o" ++ @echo "... gl_scenes/yuv.i" ++ @echo "... gl_scenes/yuv.s" ++ @echo "... tga.o" ++ @echo "... tga.i" ++ @echo "... tga.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: ++ cd /home/wbx/kodi-rpi2/build_raspberry-pi2_glibc_arm_hard_eabihf/w-bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8-1/bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8 && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 ++.PHONY : cmake_check_build_system + diff --git a/package/bcm28xx-vc/patches/patch-host_applications_linux_apps_smem_CMakeLists_txt b/package/bcm28xx-vc/patches/patch-host_applications_linux_apps_smem_CMakeLists_txt new file mode 100644 index 000000000..f1e293abe --- /dev/null +++ b/package/bcm28xx-vc/patches/patch-host_applications_linux_apps_smem_CMakeLists_txt @@ -0,0 +1,11 @@ +--- bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8.orig/host_applications/linux/apps/smem/CMakeLists.txt 2015-10-27 10:59:48.000000000 +0100 ++++ bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8/host_applications/linux/apps/smem/CMakeLists.txt 2015-11-16 20:31:12.527571311 +0100 +@@ -4,7 +4,7 @@ get_filename_component (VIDEOCORE_ROOT . + include (${VIDEOCORE_ROOT}/makefiles/cmake/global_settings.cmake) + + if (NOT WIN32) +- add_definitions(-Wall -Werror) ++ add_definitions(-Wall) + endif () + + include_directories ( diff --git a/package/bcm28xx-vc/patches/patch-host_applications_linux_libs_bcm_host_CMakeLists_txt b/package/bcm28xx-vc/patches/patch-host_applications_linux_libs_bcm_host_CMakeLists_txt new file mode 100644 index 000000000..20d396566 --- /dev/null +++ b/package/bcm28xx-vc/patches/patch-host_applications_linux_libs_bcm_host_CMakeLists_txt @@ -0,0 +1,11 @@ +--- bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8.orig/host_applications/linux/libs/bcm_host/CMakeLists.txt 2015-10-27 10:59:48.000000000 +0100 ++++ bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8/host_applications/linux/libs/bcm_host/CMakeLists.txt 2015-11-16 20:31:44.277474548 +0100 +@@ -3,7 +3,7 @@ if (WIN32) + set(VCOS_PLATFORM win32) + else () + set(VCOS_PLATFORM pthreads) +- add_definitions(-Wall -Werror) ++ add_definitions(-Wall) + endif () + + include_directories( ../../../.. diff --git a/package/bcm28xx-vc/patches/patch-host_applications_linux_libs_sm_CMakeLists_txt b/package/bcm28xx-vc/patches/patch-host_applications_linux_libs_sm_CMakeLists_txt new file mode 100644 index 000000000..3269c550c --- /dev/null +++ b/package/bcm28xx-vc/patches/patch-host_applications_linux_libs_sm_CMakeLists_txt @@ -0,0 +1,11 @@ +--- bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8.orig/host_applications/linux/libs/sm/CMakeLists.txt 2015-10-27 10:59:48.000000000 +0100 ++++ bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8/host_applications/linux/libs/sm/CMakeLists.txt 2015-11-16 20:31:27.946553043 +0100 +@@ -3,7 +3,7 @@ if (WIN32) + set(VCOS_PLATFORM win32) + else () + set(VCOS_PLATFORM pthreads) +- add_definitions(-Wall -Werror) ++ add_definitions(-Wall) + endif () + + include_directories( ../../../.. diff --git a/package/bcm28xx-vc/patches/patch-interface_mmal_CMakeLists_txt b/package/bcm28xx-vc/patches/patch-interface_mmal_CMakeLists_txt new file mode 100644 index 000000000..8e4a1dace --- /dev/null +++ b/package/bcm28xx-vc/patches/patch-interface_mmal_CMakeLists_txt @@ -0,0 +1,11 @@ +--- bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8.orig/interface/mmal/CMakeLists.txt 2015-10-27 10:59:48.000000000 +0100 ++++ bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8/interface/mmal/CMakeLists.txt 2015-11-16 20:18:59.755962062 +0100 +@@ -3,7 +3,7 @@ if (NOT DEFINED LIBRARY_TYPE) + set(LIBRARY_TYPE SHARED) + endif (NOT DEFINED LIBRARY_TYPE) + +-add_definitions(-Wall -Werror) ++add_definitions(-Wall) + + add_library(mmal SHARED util/mmal_util.c) + diff --git a/package/bcm28xx-vc/patches/patch-interface_vcos_CMakeLists_txt b/package/bcm28xx-vc/patches/patch-interface_vcos_CMakeLists_txt new file mode 100644 index 000000000..c962c3acf --- /dev/null +++ b/package/bcm28xx-vc/patches/patch-interface_vcos_CMakeLists_txt @@ -0,0 +1,11 @@ +--- bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8.orig/interface/vcos/CMakeLists.txt 2015-10-27 10:59:48.000000000 +0100 ++++ bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8/interface/vcos/CMakeLists.txt 2015-11-16 20:22:22.274588157 +0100 +@@ -43,7 +43,7 @@ foreach (header ${HEADERS}) + endforeach () + + if (CMAKE_COMPILER_IS_GNUCC) +- add_definitions (-ggdb -Werror -Wall) ++ add_definitions (-Wall) + endif () + + if (CMAKE_COMPILER_2005) diff --git a/package/bcm28xx-vc/patches/patch-interface_vcos_pthreads_CMakeLists_txt b/package/bcm28xx-vc/patches/patch-interface_vcos_pthreads_CMakeLists_txt new file mode 100644 index 000000000..34ac618fb --- /dev/null +++ b/package/bcm28xx-vc/patches/patch-interface_vcos_pthreads_CMakeLists_txt @@ -0,0 +1,11 @@ +--- bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8.orig/interface/vcos/pthreads/CMakeLists.txt 2015-10-27 10:59:48.000000000 +0100 ++++ bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8/interface/vcos/pthreads/CMakeLists.txt 2015-11-16 20:22:39.353464208 +0100 +@@ -1,7 +1,7 @@ + # MSVC5 does not fully support C99, enabling declaration-after-statement + # warnings allows a common MSVC5 build error to be detected in Linux builds. + if (CMAKE_COMPILER_IS_GNUCC) +- set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Werror -Wdeclaration-after-statement") ++ set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wdeclaration-after-statement") + add_definitions (-D_GNU_SOURCE) + endif () + diff --git a/package/bcm28xx-vc/patches/patch-interface_vmcs_host_linux_vcfiled_CMakeLists_txt b/package/bcm28xx-vc/patches/patch-interface_vmcs_host_linux_vcfiled_CMakeLists_txt new file mode 100644 index 000000000..06bc3da60 --- /dev/null +++ b/package/bcm28xx-vc/patches/patch-interface_vmcs_host_linux_vcfiled_CMakeLists_txt @@ -0,0 +1,9 @@ +--- bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8.orig/interface/vmcs_host/linux/vcfiled/CMakeLists.txt 2015-10-27 10:59:48.000000000 +0100 ++++ bcm28xx-vc-c2f27fb8e581f8e5af83bf28422553ade8f7a7c8/interface/vmcs_host/linux/vcfiled/CMakeLists.txt 2015-11-16 20:16:31.801734911 +0100 +@@ -1,6 +1,4 @@ + +-add_definitions(-Werror) +- + # vcfiled - serves files to videocore. used for media handlers from + # OpenMAX/IL and loading VLLs. + add_executable(vcfiled vcfiled.c) -- cgit v1.2.3