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 > $@