mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
294da02a2f
- fix all the compiler errors - give them their own gl directory
30 lines
464 B
Makefile
30 lines
464 B
Makefile
if USE_UVCH264
|
|
UVCH264_DIR=uvch264
|
|
else
|
|
UVCH264_DIR=
|
|
endif
|
|
|
|
if HAVE_GTK
|
|
GTK_EXAMPLES=mxf camerabin2 $(UVCH264_DIR)
|
|
else
|
|
GTK_EXAMPLES=
|
|
endif
|
|
|
|
if USE_DIRECTFB
|
|
DIRECTFB_DIR=directfb
|
|
else
|
|
DIRECTFB_DIR=
|
|
endif
|
|
|
|
OPENCV_EXAMPLES=opencv
|
|
|
|
if USE_OPENGL
|
|
GL_DIR=gl
|
|
else
|
|
GL_DIR=
|
|
endif
|
|
|
|
SUBDIRS= mpegts $(DIRECTFB_DIR) $(GTK_EXAMPLES) $(OPENCV_EXAMPLES) $(GL_DIR)
|
|
DIST_SUBDIRS= mpegts camerabin2 directfb mxf opencv uvch264 gl
|
|
|
|
include $(top_srcdir)/common/parallel-subdirs.mak
|