include ../../Makefile.inc SUBDIRS = basic-input basic-system basic-video citrix fluxbox grub2 \ hwinfo idesk lprng mage network tigervnc ifeq ($(SYSTEMINIT),systemd) SUBDIRS += systemd else SUBDIRS += sysvinit endif ifeq ($(SPLASH),plymouth) SUBDIRS += plymouth else SUBDIRS += fbsplash endif INSTALLDIRS = $(SUBDIRS:%=install-%) CLEANDIRS = $(SUBDIRS:%=clean-%) $(SUBDIRS): $(MAKE) -C $@ $(INSTALLDIRS): $(MAKE) -C $(@:install-%=%) install $(CLEANDIRS): $(MAKE) -C $(@:clean-%=%) clean subdirs: $(SUBDIRS) all: $(SUBDIRS) install: $(INSTALLDIRS) all clean: $(CLEANDIRS) .PHONY: subdirs $(SUBDIRS) .PHONY: subdirs $(INSTALLDIRS) .PHONY: subdirs $(CLEANDIRS) .PHONY: all install clean