hide intermediate distro targets

There are pseudo-distro targets that are useful to combine
the needed bits and pieces for a few more different end-user
images but that are useless themselves (e.g. desktop-base
wouldn't even start X session before someone would have
installed a window manager).

Let's just hide these under the hood so that `make help',
`make everything' and potential frontends don't bother.
This commit is contained in:
Michael Shigorin 2012-03-12 22:07:18 +02:00
parent af6b9940de
commit a07959e2f5
2 changed files with 6 additions and 6 deletions

View File

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

View File

@ -1,10 +1,10 @@
# server distributions
ifeq (distro,$(IMAGE_CLASS))
distro/server-base: distro/.installer use/syslinux/ui-menu use/memtest
distro/.server-base: distro/.installer use/syslinux/ui-menu use/memtest
@$(call add,BASE_LISTS,server-base)
distro/server-mini: distro/server-base use/cleanup/x11-alterator
distro/server-mini: distro/.server-base use/cleanup/x11-alterator
@$(call set,KFLAVOURS,el-smp)
@$(call add,THE_KMODULES,e1000e igb)
@$(call add,STAGE1_KMODULES,e1000e igb)