Makefile.am 637 B

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