mirror of
https://gitlab.freedesktop.org/xorg/lib/libx11.git
synced 2026-05-23 10:58:17 +02:00
Libtool’s is now sufficiently fast that DOLT is no longer worth the bother, even on those few systems where is works. This reverts commit3e9afd501eand part of commitd31e644c65. It conflicted with commitf6a4fd0c76which moved dolt from configure.ac to m4/dolt.m4. And it addresses: http://bugs.freedesktop.org/show_bug.cgi?id=28188 Signed-off-by: James Cloos <cloos@jhcloos.com>
34 lines
594 B
Makefile
34 lines
594 B
Makefile
if XLIB_LOADABLE_I18N
|
|
ORDER=src modules
|
|
else
|
|
ORDER=modules src
|
|
endif
|
|
SUBDIRS=include $(ORDER) nls man specs
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = x11.pc x11-xcb.pc
|
|
|
|
MAINTAINERCLEANFILES = ChangeLog INSTALL
|
|
|
|
.PHONY: ChangeLog INSTALL
|
|
|
|
INSTALL:
|
|
$(INSTALL_CMD)
|
|
|
|
ChangeLog:
|
|
$(CHANGELOG_CMD)
|
|
|
|
dist-hook: ChangeLog INSTALL
|
|
|
|
if LINT
|
|
# Check source code with tools like lint & sparse
|
|
LINT_SUBDIRS=src # modules
|
|
|
|
lint:
|
|
@for subdir in $(LINT_SUBDIRS) ; do \
|
|
echo "Making $@ in $$subdir"; \
|
|
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) lint) ; \
|
|
done
|
|
endif LINT
|