diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2002-09-09 07:15:56 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2002-09-09 07:15:56 +0000 |
commit | 657579947e7da87e02879c687b7bca78d18781b6 (patch) | |
tree | c21f2b6dc8c3dbf38aaae18e880824ae796a741f /sys/Makefile.am | |
parent | 3ec5a0a054fd36290f006aa2101da35d03d9f5ed (diff) |
This adds v4l2 stuff to the build system
Original commit message from CVS:
This adds v4l2 stuff to the build system
Diffstat (limited to 'sys/Makefile.am')
-rw-r--r-- | sys/Makefile.am | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/sys/Makefile.am b/sys/Makefile.am index aefb6481c..6419b828a 100644 --- a/sys/Makefile.am +++ b/sys/Makefile.am @@ -22,6 +22,12 @@ else V4L_DIR= endif +if USE_V4L2 +V4L2_DIR=v4l2 +else +V4L2_DIR= +endif + if USE_VCD VCD_DIR=vcd else @@ -46,8 +52,7 @@ else CDROM_DIR= endif -SUBDIRS=$(DXR3_DIR) $(OSS_DIR) $(QCAM_DIR) $(V4L_DIR) $(VCD_DIR) \ - $(VGA_DIR) $(XVIDEO_DIR) $(CDROM_DIR) - -DIST_SUBDIRS=dxr3 oss qcam v4l vcd vga xvideo videosink cdrom +SUBDIRS=$(DXR3_DIR) $(OSS_DIR) $(QCAM_DIR) $(V4L_DIR) $(V4L2_DIR) \ + $(VCD_DIR) $(VGA_DIR) $(XVIDEO_DIR) $(CDROM_DIR) +DIST_SUBDIRS=dxr3 oss qcam v4l v4l2 vcd vga xvideo videosink cdrom |