diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-20 20:37:57 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-20 20:37:57 +0000 |
commit | 3f74c3928fa2b44667952a4ce247eca7c6563f39 (patch) | |
tree | 95b1430861770da6f9f13f83ddb758d51244063e /sys | |
parent | 3d06875b167d3ad0f3fc78299a326d55e4290787 (diff) | |
download | gst-plugins-bad-3f74c3928fa2b44667952a4ce247eca7c6563f39.tar.gz gst-plugins-bad-3f74c3928fa2b44667952a4ce247eca7c6563f39.tar.bz2 gst-plugins-bad-3f74c3928fa2b44667952a4ce247eca7c6563f39.zip |
added v4l handling
Original commit message from CVS:
added v4l handling
Diffstat (limited to 'sys')
-rw-r--r-- | sys/Makefile.am | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/sys/Makefile.am b/sys/Makefile.am index 98297dc5..a88e2f9a 100644 --- a/sys/Makefile.am +++ b/sys/Makefile.am @@ -1,17 +1,23 @@ ### FIXME use HAVE_ stuff to decide on dirs -if USE_VGA -VGA_SUBDS=vga -else -VGA_SUBDS= -endif - if USE_OSS OSS_SUBDS=oss else OSS_SUBDS= endif -SUBDIRS=$(OSS_SUBDS) qcam v4l vcd $(VGA_SUBDS) xvideo +if USE_V4L +V4L_SUBDS=v4l +else +V4L_SUBDS= +endif + +if USE_VGA +VGA_SUBDS=vga +else +VGA_SUBDS= +endif + +SUBDIRS=$(OSS_SUBDS) qcam $(V4L_SUBDS) vcd $(VGA_SUBDS) xvideo DIST_SUBDIRS=oss qcam v4l vcd vga xvideo |