mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-24 07:46:42 +00:00
18 lines
384 B
Makefile
18 lines
384 B
Makefile
|
include $(REP_DIR)/lib/import/import-libuvc.mk
|
||
|
|
||
|
LIBUVC_DIR := $(call select_from_ports,libuvc)/src/lib/libuvc
|
||
|
LIBS += libc libusb jpeg
|
||
|
|
||
|
INC_DIR += $(LIBUVC_DIR)/include
|
||
|
|
||
|
#CC_OPT += -DUVC_DEBUGGING
|
||
|
|
||
|
ALL_SRC_C := $(notdir $(wildcard $(LIBUVC_DIR)/src/*.c))
|
||
|
SRC_C := $(filter-out example.c test.c,$(ALL_SRC_C))
|
||
|
|
||
|
vpath %.c $(LIBUVC_DIR)/src
|
||
|
|
||
|
SHARED_LIB := yes
|
||
|
|
||
|
CC_CXX_WARN_STRICT =
|