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