Makefile.am revision 05b261ec
1if DMX 2if BUILD_DARWIN 3# Darwin does not need the dmx subdir 4else 5DMX_SUBDIRS = dmx 6endif 7endif 8 9if XORG 10if BUILD_DARWIN 11# Darwin does not need the xfree86 subdir 12else 13XORG_SUBDIRS = xfree86 14endif 15endif 16 17if XVFB 18XVFB_SUBDIRS = vfb 19endif 20 21if XNEST 22XNEST_SUBDIRS = xnest 23endif 24 25if XWIN 26XWIN_SUBDIRS = xwin 27endif 28 29if XGL 30XGL_SUBDIRS = xgl 31endif 32 33if KDRIVE 34KDRIVE_SUBDIRS = kdrive 35endif 36 37if XPRINT 38XPRINT_SUBDIRS = xprint 39endif 40 41if BUILD_DARWIN 42DARWIN_SUBDIRS = darwin 43endif 44 45SUBDIRS = \ 46 $(XORG_SUBDIRS) \ 47 $(XGL_SUBDIRS) \ 48 $(XWIN_SUBDIRS) \ 49 $(DARWIN_SUBDIRS) \ 50 $(XVFB_SUBDIRS) \ 51 $(XNEST_SUBDIRS) \ 52 $(DMX_SUBDIRS) \ 53 $(KDRIVE_SUBDIRS) \ 54 $(XPRINT_SUBDIRS) 55 56DIST_SUBDIRS = dmx xfree86 vfb xnest xwin darwin kdrive xgl xprint 57 58relink: 59 for i in $(SUBDIRS) ; do $(MAKE) -C $$i relink ; done 60