dslinux/user/pixil/sys Config.in Makefile

amadeus dslinux_amadeus at user.in-berlin.de
Tue Oct 3 13:27:08 CEST 2006


Update of /cvsroot/dslinux/dslinux/user/pixil/sys
In directory antilope:/tmp/cvs-serv11916/sys

Added Files:
	Config.in Makefile 
Log Message:
adding pristine copy of pixil to HEAD so I can branch from it

--- NEW FILE: Config.in ---
menu "System Applications"

config CONFIG_COLOSSEUM
       bool "IPC server"
       default y
       help
        Colosseum is the Pixil Inter Process Communications server.
	It is used to allow easier data sharing between applications.
	You probably want to say 'Y' here.

config CONFIG_PAR
       bool "Pixil Application Registry"
       default y
       help
       the Pixil Application Registry (PAR) is used to store application
       information and configuration information.  It is used by the window
       manager and all the applications as a central despository for data.
       You will want to say 'Y' here unless you absolutely know what you are doing.

config CONFIG_PIXILWM
	bool "Pixil Window Manager"
	depends on CONFIG_NANOX
	default y
	help
	Say 'yes' here to build the Pixil Window Manager - a majpr part of the 
	Pixil Operating Environment under Nano-X.

config CONFIG_PIXILWM_THEMES
       bool "Enable PixilWM themes"
       depends on CONFIG_PIXILWM
       default y
       help
       Say yes here to enable the PixilWM themes engine

config CONFIG_PIXILWM_MENUS
       bool "Enable PixilWM system menus"
       depends on CONFIG_PIXILWM
       default y
       help
       Say yes here to enable the PixilWM system menus

config CONFIG_PIXILWM_PM
       bool
       depends on CONFIG_PIXILWM && CONFIG_PM
       default y

endmenu

--- NEW FILE: Makefile ---
# sys/Makefile
# This will build all of the nessesary libraries

target-y=

target-$(CONFIG_PAR) += par
target-$(CONFIG_COLOSSEUM) += ipc
target-$(CONFIG_PIXILWM) += pixilwm
target-$(CONFIG_SYNC) += syncagent

DIRS=$(target-y)

subdir-build = $(patsubst %,_subdir_%,$(DIRS))
subdir-clean = $(patsubst %,_clean_%,$(DIRS))
subdir-install = $(patsubst %,_install_%,$(DIRS))

all: $(subdir-build)
clean: $(subdir-clean)
install: $(subdir-install)

$(subdir-build): dummy
	@ $(MAKE) -C $(patsubst _subdir_%,%,$@)

$(subdir-clean): dummy
	@ $(MAKE) -C $(patsubst _clean_%,%,$@) clean

$(subdir-install): dummy
	@ $(MAKE) -C $(patsubst _install_%,%,$@) install

dummy:




More information about the dslinux-commit mailing list