mkimage-profiles/conf.d/desktop.mk
Michael Shigorin a52b7476a4 initial "+shortcut" support and refactoring
It looks like the intermediate targets aren't all equal:
some define a finished feature while some create a common
lower level piece of configuration.

Let's do shortcuts for the former so that a distro line can be
more terse and descriptive; help targets in features.in/ tweaked
accordingly.
2012-03-19 13:14:07 +02:00

25 lines
585 B
Makefile

# desktop distributions
ifeq (distro,$(IMAGE_CLASS))
distro/.desktop-base: distro/.installer \
use/syslinux/ui-vesamenu use/x11/xorg
@$(call set,INSTALLER,desktop)
distro/.desktop-mini: distro/.desktop-base \
use/lowmem use/x11/xdm use/power/acpi/button \
use/cleanup/alterator
distro/icewm: distro/.desktop-mini +icewm
distro/tde: distro/.desktop-mini use/x11/kdm
@$(call add,BASE_LISTS, \
$(call tags,(base || desktop) && (network || tde)))
distro/ltsp-icewm: distro/icewm +ltsp
distro/ltsp-tde: distro/tde +ltsp
distro/desktop-systemd: distro/icewm use/systemd
endif