dslinux/user/pixil/apps/fltk/sysconfig Config.in Makefile

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


Update of /cvsroot/dslinux/dslinux/user/pixil/apps/fltk/sysconfig
In directory antilope:/tmp/cvs-serv11916/apps/fltk/sysconfig

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 "Sysconfig Plugins"
depends CONFIG_APP_SYSCONFIG

config CONFIG_SYSCONF_ABOUT
       bool "About plugin"
       default y
       help
	Say 'yes' here to build the about plugin for
	the system configuration utility.  The about
	plugin describes the current system settings.


config CONFIG_SYSCONF_BACKLITE
       bool "Backlite plugin"
       default y
       depends CONFIG_PM
       help
	Say 'yes' here to build the backlite plugin for
	the system configuration utility.   The backlite
	plugin allows the user to set brightness and 
	screen settings.

#config CONFIG_SYSCONF_CAL
#       bool "Calibration plugin"
#       default y
#       depends on CONFIG_NANOX 
#       help
#	Say 'yes' here to build the calibration plugin for
#	the system configuration utility. The calibration
#	plugin allows the user to readjust the mouse settings.

config CONFIG_SYSCONF_CLOCK
       bool "CLock plugin"
       default y
       help
	Say 'yes' here to build the clock plugin for
	the system configuration utility. The clock
	plugin allows the user to set the current date
	and time.

config CONFIG_SYSCONF_MEMORY
       bool "Memory plugin"
       default y
       help
	Say 'yes' here to build the memory plugin for
	the system configuration utility. The memory
	plugin allows the user to review the current
	memory and flash usage.

config CONFIG_SYSCONF_POWER
       bool "Power plugin"
       default y
       depends CONFIG_PM
       help
	Say 'yes' here to build the power plugin for
	the system configuration utility.  The power
	plugin allows the user to review power settings
	to conserve battery space.

config CONFIG_SYSCONF_REGIONAL
       bool "Regional plugin"
       default y
       help
	Say 'yes' here to build the reginal plugin for
	the system configuration utility.  The regional
	plugin allows the user to set regional preferences
	based on their preferred country.

config CONFIG_SYSCONF_USERINFO
       bool "User Info plugin"
       default y
       help
	Say 'yes' here to build the user info plugin for
	the system configuration utility.  The user info
	plugin allows the user to set personal information
	(name, e-mail, etc..).

endmenu



--- NEW FILE: Makefile ---
# apps/sysconfig/Makefile

DIRS-y= src

DIRS-$(CONFIG_SYSCONF_ABOUT) += about
DIRS-$(CONFIG_SYSCONF_BACKLITE) += backlite
DIRS-$(CONFIG_SYSCONF_CAL) += cal
DIRS-$(CONFIG_SYSCONF_CLOCK) += clock
DIRS-$(CONFIG_SYSCONF_MEMORY) += memory
DIRS-$(CONFIG_SYSCONF_POWER) += power
DIRS-$(CONFIG_SYSCONF_REGIONAL) += regional
DIRS-$(CONFIG_SYSCONF_USERINFO) += userinfo

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

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