Browse Source

bcm28xx-vc: use /usr

Waldemar Brodkorb 6 years ago
parent
commit
9daf8c8106

+ 36 - 39
package/bcm28xx-vc/Makefile

@@ -36,52 +36,49 @@ $(eval $(call PKG_template,BCM28XX_VC_DEBUG,bcm28xx-vc-debug,$(PKG_VERSION)-$(PK
 $(eval $(call PKG_template,BCM28XX_VC_GL_LIBS,bcm28xx-vc-gl-libs,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
 
 CONFIG_STYLE:=          cmake
+CMAKE_FLAGS+=		-DVMCS_INSTALL_PREFIX=/usr
 
 bcm28xx-vc-tools-install:
-	$(INSTALL_DIR) $(IDIR_BCM28XX_VC_TOOLS)/opt/vc/bin
-	$(INSTALL_BIN) $(WRKINST)/opt/vc/bin/vcgencmd \
-		$(IDIR_BCM28XX_VC_TOOLS)/opt/vc/bin
-	$(INSTALL_BIN) $(WRKINST)/opt/vc/bin/dtoverlay \
-		$(IDIR_BCM28XX_VC_TOOLS)/opt/vc/bin
+	$(INSTALL_DIR) $(IDIR_BCM28XX_VC_TOOLS)/usr/bin
+	$(INSTALL_BIN) $(WRKINST)/usr/bin/vcgencmd \
+		$(IDIR_BCM28XX_VC_TOOLS)/usr/bin
+	$(INSTALL_BIN) $(WRKINST)/usr/bin/dtoverlay \
+		$(IDIR_BCM28XX_VC_TOOLS)/usr/bin
 
 bcm28xx-vc-debug-install:
-	$(INSTALL_DIR) $(IDIR_BCM28XX_VC_DEBUG)/opt/vc/lib
-	$(CP) $(WRKINST)/opt/vc/lib/libdebug_sym.so \
-		$(IDIR_BCM28XX_VC_DEBUG)/opt/vc/lib 
+	$(INSTALL_DIR) $(IDIR_BCM28XX_VC_DEBUG)/usr/lib
+	$(CP) $(WRKINST)/usr/lib/libdebug_sym.so \
+		$(IDIR_BCM28XX_VC_DEBUG)/usr/lib
 
 bcm28xx-vc-libs-install:
-	$(INSTALL_DIR) $(IDIR_BCM28XX_VC_LIBS)/opt/vc/lib
-	$(CP) $(WRKINST)/opt/vc/lib/libvcos.so \
-		$(IDIR_BCM28XX_VC_LIBS)/opt/vc/lib 
-	$(CP) $(WRKINST)/opt/vc/lib/libvchiq_arm.so \
-		$(IDIR_BCM28XX_VC_LIBS)/opt/vc/lib
-	$(CP) $(WRKINST)/opt/vc/lib/libbcm_host.so \
-		$(IDIR_BCM28XX_VC_LIBS)/opt/vc/lib
-	$(CP) $(WRKINST)/opt/vc/lib/libcontainers.so \
-		$(IDIR_BCM28XX_VC_LIBS)/opt/vc/lib
-	$(CP) $(WRKINST)/opt/vc/lib/libdtovl.so \
-		$(IDIR_BCM28XX_VC_LIBS)/opt/vc/lib
-	-rm -rf $(STAGING_TARGET_DIR)/opt/vc
-	mkdir -p $(STAGING_TARGET_DIR)/opt/vc
-	$(CP) $(WRKINST)/opt/vc/lib $(STAGING_TARGET_DIR)/opt/vc
-	$(CP) $(WRKINST)/opt/vc/include $(STAGING_TARGET_DIR)/opt/vc
+	$(INSTALL_DIR) $(IDIR_BCM28XX_VC_LIBS)/usr/lib
+	$(CP) $(WRKINST)/usr/lib/libvcos.so \
+		$(IDIR_BCM28XX_VC_LIBS)/usr/lib
+	$(CP) $(WRKINST)/usr/lib/libvchiq_arm.so \
+		$(IDIR_BCM28XX_VC_LIBS)/usr/lib
+	$(CP) $(WRKINST)/usr/lib/libbcm_host.so \
+		$(IDIR_BCM28XX_VC_LIBS)/usr/lib
+	$(CP) $(WRKINST)/usr/lib/libcontainers.so \
+		$(IDIR_BCM28XX_VC_LIBS)/usr/lib
+	$(CP) $(WRKINST)/usr/lib/libdtovl.so \
+		$(IDIR_BCM28XX_VC_LIBS)/usr/lib
 
 bcm28xx-vc-gl-libs-install:
-	$(INSTALL_DIR) $(IDIR_BCM28XX_VC_GL_LIBS)/opt/vc/lib
-	$(CP) $(WRKINST)/opt/vc/lib/libmmal*.so \
-		$(IDIR_BCM28XX_VC_GL_LIBS)/opt/vc/lib
-	$(CP) $(WRKINST)/opt/vc/lib/libopenmaxil.so \
-		$(IDIR_BCM28XX_VC_GL_LIBS)/opt/vc/lib
-	$(CP) $(WRKINST)/opt/vc/lib/libvcsm.so \
-		$(IDIR_BCM28XX_VC_GL_LIBS)/opt/vc/lib
-	$(CP) $(WRKINST)/opt/vc/lib/libEGL.so \
-		$(IDIR_BCM28XX_VC_GL_LIBS)/opt/vc/lib
-	$(CP) $(WRKINST)/opt/vc/lib/libGLESv2.so \
-		$(IDIR_BCM28XX_VC_GL_LIBS)/opt/vc/lib
-	$(CP) $(WRKINST)/opt/vc/lib/libOpenVG.so \
-		$(IDIR_BCM28XX_VC_GL_LIBS)/opt/vc/lib
-	$(CP) $(WRKINST)/opt/vc/lib/libbrcm*.so \
-		$(IDIR_BCM28XX_VC_GL_LIBS)/opt/vc/lib
-	(cd $(IDIR_BCM28XX_VC_GL_LIBS)/opt/vc/lib && ln -sf libEGL.so libEGL.so.1)
+	$(INSTALL_DIR) $(IDIR_BCM28XX_VC_GL_LIBS)/usr/lib
+	$(CP) $(WRKINST)/usr/lib/libmmal*.so \
+		$(IDIR_BCM28XX_VC_GL_LIBS)/usr/lib
+	$(CP) $(WRKINST)/usr/lib/libopenmaxil.so \
+		$(IDIR_BCM28XX_VC_GL_LIBS)/usr/lib
+	$(CP) $(WRKINST)/usr/lib/libvcsm.so \
+		$(IDIR_BCM28XX_VC_GL_LIBS)/usr/lib
+	$(CP) $(WRKINST)/usr/lib/libEGL.so \
+		$(IDIR_BCM28XX_VC_GL_LIBS)/usr/lib
+	$(CP) $(WRKINST)/usr/lib/libGLESv2.so \
+		$(IDIR_BCM28XX_VC_GL_LIBS)/usr/lib
+	$(CP) $(WRKINST)/usr/lib/libOpenVG.so \
+		$(IDIR_BCM28XX_VC_GL_LIBS)/usr/lib
+	$(CP) $(WRKINST)/usr/lib/libbrcm*.so \
+		$(IDIR_BCM28XX_VC_GL_LIBS)/usr/lib
+	(cd $(IDIR_BCM28XX_VC_GL_LIBS)/usr/lib && ln -sf libEGL.so libEGL.so.1)
 
 include $(ADK_TOPDIR)/mk/pkg-bottom.mk

+ 3 - 3
package/bcm28xx-vc/patches/patch-host_applications_linux_apps_raspicam_CMakeLists_txt

@@ -1,5 +1,5 @@
---- 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
+--- bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18.orig/host_applications/linux/apps/raspicam/CMakeLists.txt	2017-06-27 18:59:31.000000000 +0200
++++ bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18/host_applications/linux/apps/raspicam/CMakeLists.txt	2017-06-30 23:35:09.949011873 +0200
 @@ -1,8 +1,6 @@
  
  # raspistill/raspivid/raspiyuv
@@ -8,4 +8,4 @@
 -
  include_directories(${PROJECT_SOURCE_DIR}/host_applications/linux/libs/bcm_host/include)
  include_directories(${PROJECT_SOURCE_DIR}/host_applications/linux/apps/raspicam/)
- 
+ include_directories(${PROJECT_SOURCE_DIR}/host_applications/linux/libs/sm)

+ 816 - 0
package/bcm28xx-vc/patches/patch-host_applications_linux_apps_raspicam_Makefile

@@ -0,0 +1,816 @@
+--- bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18.orig/host_applications/linux/apps/raspicam/Makefile	2017-06-27 18:59:31.000000000 +0200
++++ bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18/host_applications/linux/apps/raspicam/Makefile	2017-06-30 23:35:14.657196842 +0200
+@@ -1,6 +1,809 @@
+-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.8
+ 
+-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/openadk/host_x86_64-linux-gnu/usr/bin/cmake
++
++# The command to remove a file.
++RM = /home/wbx/openadk/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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18
++
++# The top-level build directory on which CMake was run.
++CMAKE_BINARY_DIR = /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18
++
++#=============================================================================
++# Targets provided globally by CMake.
++
++# Special rule for the target package
++package: preinstall
++	@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..."
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && /home/wbx/openadk/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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && /home/wbx/openadk/host_x86_64-linux-gnu/usr/bin/cpack --config ./CPackSourceConfig.cmake /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18/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/openadk/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: preinstall/fast
++	@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
++	/home/wbx/openadk/host_x86_64-linux-gnu/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..."
++	/home/wbx/openadk/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 edit_cache
++edit_cache:
++	@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
++	/home/wbx/openadk/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 install/strip
++install/strip: preinstall
++	@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
++	/home/wbx/openadk/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: preinstall/fast
++	@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
++	/home/wbx/openadk/host_x86_64-linux-gnu/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
++.PHONY : install/strip/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
++install: preinstall
++	@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
++	/home/wbx/openadk/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/openadk/host_x86_64-linux-gnu/usr/bin/cmake -P cmake_install.cmake
++.PHONY : install/fast
++
++# The main all target
++all: cmake_check_build_system
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(CMAKE_COMMAND) -E cmake_progress_start /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18/CMakeFiles /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18/host_applications/linux/apps/raspicam/CMakeFiles/progress.marks
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f CMakeFiles/Makefile2 host_applications/linux/apps/raspicam/all
++	$(CMAKE_COMMAND) -E cmake_progress_start /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18/CMakeFiles 0
++.PHONY : all
++
++# The main clean target
++clean:
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f CMakeFiles/Makefile2 host_applications/linux/apps/raspicam/preinstall
++.PHONY : preinstall
++
++# Prepare targets for installation.
++preinstall/fast:
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f CMakeFiles/Makefile2 host_applications/linux/apps/raspicam/preinstall
++.PHONY : preinstall/fast
++
++# clear depends
++depend:
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/raspividyuv.dir/rule:
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/raspivid.dir/rule:
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/raspiyuv.dir/rule:
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build
++.PHONY : raspiyuv/fast
++
++# Convenience name for target.
++host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/rule:
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build
++.PHONY : raspistill/fast
++
++RaspiCLI.o: RaspiCLI.c.o
++
++.PHONY : RaspiCLI.o
++
++# target to build an object file
++RaspiCLI.c.o:
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiCLI.c.o
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiCLI.c.i
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiCLI.c.s
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiCamControl.c.o
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiCamControl.c.i
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiCamControl.c.s
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiPreview.c.o
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiPreview.c.i
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspiyuv.dir/RaspiPreview.c.s
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/vcsm_square.o: gl_scenes/vcsm_square.c.o
++
++.PHONY : gl_scenes/vcsm_square.o
++
++# target to build an object file
++gl_scenes/vcsm_square.c.o:
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/vcsm_square.c.o
++.PHONY : gl_scenes/vcsm_square.c.o
++
++gl_scenes/vcsm_square.i: gl_scenes/vcsm_square.c.i
++
++.PHONY : gl_scenes/vcsm_square.i
++
++# target to preprocess a source file
++gl_scenes/vcsm_square.c.i:
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/vcsm_square.c.i
++.PHONY : gl_scenes/vcsm_square.c.i
++
++gl_scenes/vcsm_square.s: gl_scenes/vcsm_square.c.s
++
++.PHONY : gl_scenes/vcsm_square.s
++
++# target to generate assembly for a file
++gl_scenes/vcsm_square.c.s:
++	cd /home/wbx/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(MAKE) -f host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/build.make host_applications/linux/apps/raspicam/CMakeFiles/raspistill.dir/gl_scenes/vcsm_square.c.s
++.PHONY : gl_scenes/vcsm_square.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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(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 "... package"
++	@echo "... raspivid"
++	@echo "... raspiyuv"
++	@echo "... package_source"
++	@echo "... install/local"
++	@echo "... raspistill"
++	@echo "... rebuild_cache"
++	@echo "... edit_cache"
++	@echo "... install/strip"
++	@echo "... list_install_components"
++	@echo "... install"
++	@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/vcsm_square.o"
++	@echo "... gl_scenes/vcsm_square.i"
++	@echo "... gl_scenes/vcsm_square.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/openadk/build_raspberry-pi3_glibc_cortex_a53_hard_eabihf/w-bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18-2/bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18 && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
++.PHONY : cmake_check_build_system
+ 

+ 10 - 2
package/bcm28xx-vc/patches/patch-host_applications_linux_libs_bcm_host_CMakeLists_txt

@@ -1,5 +1,5 @@
---- 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
+--- bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18.orig/host_applications/linux/libs/bcm_host/CMakeLists.txt	2017-06-27 18:59:31.000000000 +0200
++++ bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18/host_applications/linux/libs/bcm_host/CMakeLists.txt	2017-07-01 14:33:21.139286425 +0200
 @@ -3,7 +3,7 @@ if (WIN32)
     set(VCOS_PLATFORM win32)
  else ()
@@ -9,3 +9,11 @@
  endif ()
  
  include_directories( ../../../.. 
+@@ -20,3 +20,7 @@ target_link_libraries(bcm_host vcos vcho
+ 
+ install(TARGETS bcm_host DESTINATION lib)
+ 
++configure_file("${CMAKE_CURRENT_SOURCE_DIR}/bcm_host.pc.in"
++  "${CMAKE_CURRENT_BINARY_DIR}/bcm_host.pc" @ONLY)
++install(FILES "${CMAKE_CURRENT_BINARY_DIR}/bcm_host.pc"
++  DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig")

+ 17 - 0
package/bcm28xx-vc/patches/patch-interface_khronos_CMakeLists_txt

@@ -0,0 +1,17 @@
+--- bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18.orig/interface/khronos/CMakeLists.txt	2017-06-27 18:59:31.000000000 +0200
++++ bcm28xx-vc-8d518460723779f95b49efafc04c183e83da3a18/interface/khronos/CMakeLists.txt	2017-07-01 14:33:21.139286425 +0200
+@@ -80,6 +80,14 @@ target_link_libraries(OpenVG EGL)
+ 
+ install(TARGETS EGL GLESv2 OpenVG WFC khrn_client DESTINATION lib)
+ install(TARGETS EGL_static GLESv2_static khrn_static DESTINATION lib)
++configure_file("${CMAKE_CURRENT_SOURCE_DIR}/egl/egl.pc.in"
++  "${CMAKE_CURRENT_BINARY_DIR}/egl/egl.pc" @ONLY)
++install(FILES "${CMAKE_CURRENT_BINARY_DIR}/egl/egl.pc"
++  DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig")
++configure_file("${CMAKE_CURRENT_SOURCE_DIR}/glxx/glesv2.pc.in"
++  "${CMAKE_CURRENT_BINARY_DIR}/glxx/glesv2.pc" @ONLY)
++install(FILES "${CMAKE_CURRENT_BINARY_DIR}/glxx/glesv2.pc"
++  DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig")
+ 
+ # recommended names to use to avoid conflicts with mesa libs
+ add_library(brcmEGL ${SHARED} ${EGL_SOURCE})

+ 10 - 0
package/bcm28xx-vc/src/host_applications/linux/libs/bcm_host/bcm_host.pc.in

@@ -0,0 +1,10 @@
+prefix=/usr
+exec_prefix=${prefix}
+libdir=${exec_prefix}/lib
+includedir=${prefix}/include
+
+Name: bcm_host
+Description: Broadcom VideoCore host API library
+Version: 1
+Libs: -L${libdir} -lbcm_host -lvcos -lvchiq_arm
+Cflags: -I${includedir} -I${includedir}/interface/vmcs_host/linux -I${includedir}/interface/vcos/pthreads -DUSE_VCHIQ_ARM

+ 11 - 0
package/bcm28xx-vc/src/interface/khronos/egl/egl.pc.in

@@ -0,0 +1,11 @@
+prefix=@CMAKE_INSTALL_PREFIX@
+exec_prefix=${prefix}
+libdir=${exec_prefix}/lib
+includedir=${prefix}/include
+
+Name: egl
+Description: RasberryPi implementation of EGL
+Version: 10
+Libs: -L${libdir} -lEGL -lGLESv2 -lbcm_host -lvchostif
+Cflags: -I${includedir}/ -I${includedir}/interface/vcos/pthreads/ \
+        -I${includedir}/interface/vmcs_host/linux/

+ 10 - 0
package/bcm28xx-vc/src/interface/khronos/glxx/glesv2.pc.in

@@ -0,0 +1,10 @@
+prefix=@CMAKE_INSTALL_PREFIX@
+exec_prefix=${prefix}
+libdir=${exec_prefix}/lib
+includedir=${prefix}/include
+
+Name: glesv2
+Description: RasberryPi implementation of OpenGL ESv2
+Version: 2.0
+Libs: -L${libdir} -lGLESv2
+Cflags: -I${includedir}/