2005-06-22 Diego Gonzalez <diego@pemas.net> * configure.in: add code to conditionally enable the compilation of the about-me capplet * capplets/Makefile.am: ditto
23 lines
470 B
Makefile
23 lines
470 B
Makefile
always_built_SUBDIRS = \
|
|
common accessibility \
|
|
default-applications font \
|
|
background keyboard mouse sound \
|
|
theme-switcher ui-properties \
|
|
keybindings network windows
|
|
|
|
if HAVE_RANDR
|
|
randr_SUBDIRS = display
|
|
else
|
|
randr_SUBDIRS =
|
|
endif
|
|
|
|
if BUILD_ABOUTME
|
|
aboutme_SUBDIRS = about-me
|
|
else
|
|
aboutme_SUBDIRS =
|
|
endif
|
|
|
|
SUBDIRS = $(always_built_SUBDIRS) $(randr_SUBDIRS) $(aboutme_SUBDIRS)
|
|
|
|
DIST_SUBDIRS = \
|
|
$(always_built_SUBDIRS) display $(aboutme_SUBDIRS)
|