From d8501937f6687e3838010742a27f851f715a2cc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Tue, 23 Jan 2007 18:30:56 +0000 Subject: [PATCH] update makefile to reflect tree change git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19923 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/media/media-add-ons/usb_webcam/makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/add-ons/media/media-add-ons/usb_webcam/makefile b/src/add-ons/media/media-add-ons/usb_webcam/makefile index 5c23e6020b..f0fe6b7697 100644 --- a/src/add-ons/media/media-add-ons/usb_webcam/makefile +++ b/src/add-ons/media/media-add-ons/usb_webcam/makefile @@ -34,7 +34,7 @@ TYPE := ADDON # in folder names do not work well with this makefile. SRCS := $(wildcard *.cpp) \ $(wildcard addons/*/*.cpp) \ -$(wildcard sensors/*/*.cpp) \ +$(wildcard sensors/*.cpp) \ $(wildcard cstransforms/*.cpp) # specify the resource files to use @@ -196,8 +196,8 @@ CamColorSpaceTransform.cpp: CamInternalColorSpaceTransforms.h CamInternalAddons.h: $(wildcard addons/*/*CamDevice.cpp) grep -h B_WEBCAM_MKINTFUNC $(CURDIR)/addons/*/*CamDevice.cpp > $@ -CamInternalSensors.h: $(wildcard sensors/*/*.cpp) - grep -h B_WEBCAM_DECLARE_SENSOR $(CURDIR)/sensors/*/*.cpp > $@ +CamInternalSensors.h: $(wildcard sensors/*.cpp) + grep -h B_WEBCAM_DECLARE_SENSOR $(CURDIR)/sensors/*.cpp > $@ CamInternalColorSpaceTransforms.h: $(wildcard cstransforms/*.cpp) grep -h B_WEBCAM_DECLARE_CSTRANSFORM $(CURDIR)/cstransforms/*.cpp > $@