1if XORG
2XORG_SUBDIRS = xfree86
3endif
4
5if XVFB
6XVFB_SUBDIRS = vfb
7endif
8
9if XNEST
10XNEST_SUBDIRS = xnest
11endif
12
13if XWIN
14XWIN_SUBDIRS = xwin
15endif
16
17if KDRIVE
18KDRIVE_SUBDIRS = kdrive
19endif
20
21if XQUARTZ
22XQUARTZ_SUBDIRS = xquartz
23endif
24
25SUBDIRS =			\
26	$(XORG_SUBDIRS)		\
27	$(XWIN_SUBDIRS)		\
28	$(XVFB_SUBDIRS)		\
29	$(XNEST_SUBDIRS)	\
30	$(KDRIVE_SUBDIRS)	\
31	$(XQUARTZ_SUBDIRS)
32
33DIST_SUBDIRS = xfree86 vfb xnest xwin xquartz kdrive
34
35relink:
36	$(AM_V_at)for i in $(SUBDIRS) ; do $(MAKE) -C $$i relink || exit 1 ; done
37