You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
589 B
32 lines
589 B
if BUILD_WCAP_TOOLS
|
|
wcap_subdir = wcap
|
|
endif
|
|
|
|
if ENABLE_XWAYLAND
|
|
xwayland_subdir = xwayland
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
shared \
|
|
src \
|
|
$(xwayland_subdir) \
|
|
desktop-shell \
|
|
clients \
|
|
data \
|
|
protocol \
|
|
tests \
|
|
$(wcap_subdir) \
|
|
man
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --disable-setuid-install
|
|
|
|
EXTRA_DIST = weston.ini.in wayland-scanner.mk
|
|
|
|
weston.ini : $(srcdir)/weston.ini.in
|
|
$(AM_V_GEN)$(SED) \
|
|
-e 's|@bindir[@]|$(bindir)|g' \
|
|
-e 's|@abs_top_builddir[@]|$(abs_top_builddir)|g' \
|
|
-e 's|@libexecdir[@]|$(libexecdir)|g' \
|
|
$< > $@
|
|
|
|
all-local : weston.ini
|
|
|