Makefile.am revision 4642e01f
1if BUILD_KDRIVEFBDEVLIB 2FBDEV_SUBDIRS = fbdev 3endif 4 5if XFAKESERVER 6XFAKE_SUBDIRS = fake 7endif 8 9if XSDLSERVER 10XSDL_SUBDIRS = sdl 11endif 12 13if XEPHYR 14XEPHYR_SUBDIRS = ephyr 15endif 16 17if KDRIVELINUX 18LINUX_SUBDIRS = linux 19endif 20 21SERVER_SUBDIRS = \ 22 $(XSDL_SUBDIRS) \ 23 $(FBDEV_SUBDIRS) \ 24 $(XEPHYR_SUBDIRS) \ 25 $(XFAKE_SUBDIRS) 26 27SUBDIRS = \ 28 src \ 29 $(LINUX_SUBDIRS) \ 30 $(SERVER_SUBDIRS) 31 32DIST_SUBDIRS = fbdev sdl ephyr src linux fake 33 34relink: 35 @for i in $(SERVER_SUBDIRS) ; do make -C $$i relink ; done 36