mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-29 16:10:09 +01:00
If unittests are enabled, make will build those as well - spotting potential build errors in the tests faster. Furthermore, this allows for the tests to be run from the top-level directory. This patch removes the "run make check to build the test suite" message since that'd pop up after every build now. If unittests are disabled, this change has no effect. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
87 lines
1,008 B
Makefile
87 lines
1,008 B
Makefile
AUTOMAKE_OPTIONS=dist-bzip2 foreign nostdinc
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
if COMPOSITE
|
|
COMPOSITE_DIR=composite
|
|
endif
|
|
|
|
if GLX
|
|
GLX_DIR=glx
|
|
endif
|
|
|
|
if DBE
|
|
DBE_DIR=dbe
|
|
endif
|
|
|
|
if RECORD
|
|
RECORD_DIR=record
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
doc \
|
|
include \
|
|
dix \
|
|
fb \
|
|
mi \
|
|
Xext \
|
|
miext \
|
|
os \
|
|
randr \
|
|
render \
|
|
Xi \
|
|
xkb \
|
|
$(DBE_DIR) \
|
|
$(RECORD_DIR) \
|
|
xfixes \
|
|
damageext \
|
|
$(COMPOSITE_DIR) \
|
|
$(GLX_DIR) \
|
|
exa \
|
|
config \
|
|
hw \
|
|
test
|
|
|
|
aclocaldir = $(datadir)/aclocal
|
|
aclocal_DATA = xorg-server.m4
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = xorg-server.pc
|
|
|
|
EXTRA_DIST = xorg-server.pc.in xorg-server.m4 ChangeLog autogen.sh
|
|
|
|
DISTCLEANFILES = doltcompile doltlibtool
|
|
MAINTAINERCLEANFILES=ChangeLog
|
|
|
|
.PHONY: ChangeLog
|
|
|
|
ChangeLog:
|
|
$(CHANGELOG_CMD)
|
|
|
|
dist-hook: ChangeLog
|
|
|
|
DIST_SUBDIRS = \
|
|
doc \
|
|
include \
|
|
dix \
|
|
fb \
|
|
mi \
|
|
Xext \
|
|
miext \
|
|
os \
|
|
randr \
|
|
render \
|
|
Xi \
|
|
xkb \
|
|
dbe \
|
|
record \
|
|
xfixes \
|
|
damageext \
|
|
composite \
|
|
glx \
|
|
exa \
|
|
config \
|
|
hw
|
|
|
|
# gross hack
|
|
relink: all
|
|
$(MAKE) -C hw relink
|