mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
12e4f309b2
Original commit message from CVS: added qcam checks
42 lines
484 B
Makefile
42 lines
484 B
Makefile
### FIXME use HAVE_ stuff to decide on dirs
|
|
if USE_OSS
|
|
OSS_SUBDS=oss
|
|
else
|
|
OSS_SUBDS=
|
|
endif
|
|
|
|
if USE_QCAM
|
|
QCAM_SUBDS=qcam
|
|
else
|
|
QCAM_SUBDS=
|
|
endif
|
|
|
|
if USE_V4L
|
|
V4L_SUBDS=v4l
|
|
else
|
|
V4L_SUBDS=
|
|
endif
|
|
|
|
if USE_VCD
|
|
VCD_SUBDS=vcd
|
|
else
|
|
VCD_SUBDS=
|
|
endif
|
|
|
|
if USE_VGA
|
|
VGA_SUBDS=vga
|
|
else
|
|
VGA_SUBDS=
|
|
endif
|
|
|
|
if USE_XVIDEO
|
|
XVIDEO_SUBDS=xvideo
|
|
else
|
|
XVIDEO_SUBDS=
|
|
endif
|
|
|
|
SUBDIRS=$(OSS_SUBDS) $(QCAM_SUBDS) $(V4L_SUBDS) $(VCD_SUBDS) \
|
|
$(VGA_SUBDS) $(XVIDEO_SUBDS)
|
|
|
|
DIST_SUBDIRS=oss qcam v4l vcd vga xvideo
|
|
|