xenocara/xserver/Makefile.am

105 lines
1.3 KiB
Makefile
Raw Normal View History

AUTOMAKE_OPTIONS=nostdinc
ACLOCAL_AMFLAGS = -I m4
2006-11-26 11:13:41 -07:00
if COMPOSITE
COMPOSITE_DIR=composite
endif
if GLX
GLX_DIR=glx
2006-11-26 11:13:41 -07:00
endif
if DBE
DBE_DIR=dbe
endif
if RECORD
RECORD_DIR=record
endif
2006-11-26 11:13:41 -07:00
SUBDIRS = \
doc \
2011-11-05 07:32:40 -06:00
man \
2006-11-26 11:13:41 -07:00
include \
dix \
fb \
mi \
Xext \
miext \
os \
randr \
render \
2007-11-24 10:55:21 -07:00
Xi \
2006-11-26 11:13:41 -07:00
xkb \
$(DBE_DIR) \
$(RECORD_DIR) \
2006-11-26 11:13:41 -07:00
xfixes \
damageext \
$(COMPOSITE_DIR) \
$(GLX_DIR) \
exa \
2007-11-24 10:55:21 -07:00
config \
hw \
test
2006-11-26 11:13:41 -07:00
if XORG
2006-11-26 11:13:41 -07:00
aclocaldir = $(datadir)/aclocal
aclocal_DATA = xorg-server.m4
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = xorg-server.pc
endif
EXTRA_DIST = xorg-server.pc.in xorg-server.m4 autogen.sh
2006-11-26 11:13:41 -07:00
DISTCHECK_CONFIGURE_FLAGS=\
--with-xkb-path=$(XKB_BASE_DIRECTORY) \
--with-xkb-bin-directory=$(XKB_BIN_DIRECTORY) \
--with-xkb-output='$${datadir}/X11/xkb/compiled'
2007-11-24 10:55:21 -07:00
.PHONY: ChangeLog INSTALL
INSTALL:
$(INSTALL_CMD)
2007-11-24 10:55:21 -07:00
ChangeLog:
$(CHANGELOG_CMD)
2007-11-24 10:55:21 -07:00
dist-hook: ChangeLog INSTALL
2006-11-26 11:13:41 -07:00
DIST_SUBDIRS = \
doc \
2011-11-05 07:32:40 -06:00
man \
2006-11-26 11:13:41 -07:00
include \
dix \
fb \
mi \
Xext \
miext \
os \
randr \
render \
Xi \
xkb \
dbe \
record \
xfixes \
damageext \
composite \
glx \
2006-11-26 11:13:41 -07:00
exa \
2007-11-24 10:55:21 -07:00
config \
hw \
test
2006-11-26 11:13:41 -07:00
# gross hack
relink: all
$(AM_V_at)$(MAKE) -C hw relink
install-headers: Makefile
+find . -name Makefile | while read m; do \
if grep -q install-sdkHEADERS $$m; then \
(cd `dirname "$$m"` && make install-sdkHEADERS) \
fi \
done