summaryrefslogtreecommitdiff
path: root/hw/kdrive
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2006-11-04 19:05:02 +0200
committerDaniel Stone <daniels@endtroducing.fooishbar.org>2006-11-04 19:08:23 +0200
commit412e93349e1656c9650115328af4be0e59a66f74 (patch)
tree500a3065307c65cd4ca25bc69d7e2b519797b61e /hw/kdrive
parent97fd471a627be185bee8cda3f709cfccea3fa12d (diff)
kdrive: make building of Linux support conditional (bug #5613)
Only try to build Linux support on Linux. We should probably disable all OS-dependent DDXes if we don't have a workable OS (and only build Xephyr/Xfake), but that's future work.
Diffstat (limited to 'hw/kdrive')
-rw-r--r--hw/kdrive/Makefile.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/hw/kdrive/Makefile.am b/hw/kdrive/Makefile.am
index fa1dba90a..e07804948 100644
--- a/hw/kdrive/Makefile.am
+++ b/hw/kdrive/Makefile.am
@@ -19,9 +19,13 @@ if XEPHYR
XEPHYR_SUBDIRS = ephyr
endif
+if KDRIVELINUX
+LINUX_SUBDIRS = linux
+endif
+
SUBDIRS = \
src \
- linux \
+ $(LINUX_SUBDIRS) \
$(XSDL_SUBDIRS) \
$(FBDEV_SUBDIRS) \
$(VESA_SUBDIRS) \