mirror of
https://gitlab.freedesktop.org/xorg/lib/libx11.git
synced 2026-01-08 23:30:16 +01:00
Setting the ChangeLog rule as phony forces it to be re-run even when the
ChangeLog file already exists. Research indicates .PHONY is portable to BSD and
Solaris make.
(cherry picked from b8a98809ed commit)
20 lines
290 B
Makefile
20 lines
290 B
Makefile
if XLIB_LOADABLE_I18N
|
|
ORDER=src modules
|
|
else
|
|
ORDER=modules src
|
|
endif
|
|
SUBDIRS=include $(ORDER) nls man
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = x11.pc
|
|
|
|
EXTRA_DIST=x11.pc.in ChangeLog
|
|
|
|
CLEANFILES=ChangeLog
|
|
|
|
.PHONY: ChangeLog
|
|
|
|
ChangeLog:
|
|
git-log > ChangeLog
|
|
|
|
dist-hook: ChangeLog
|