mirror of
https://gitlab.freedesktop.org/libbsd/libbsd.git
synced 2025-01-06 00:31:14 +01:00
00b538ffa3
This means we can add a trailing «\» to every element, so that they can be removed without requiring modification of other lines, and can be easily sorted. Replace the old usage of $(nil) which could possibly end up with junk added if such variable is ever defined, in the environment.
22 lines
337 B
Makefile
22 lines
337 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = \
|
|
include \
|
|
man \
|
|
src \
|
|
test \
|
|
# EOL
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
EXTRA_DIST = \
|
|
autogen \
|
|
get-version \
|
|
# EOL
|
|
|
|
dist-hook:
|
|
echo $(VERSION) >$(distdir)/.dist-version
|
|
if [ -d .git ]; then \
|
|
XDG_CONFIG_HOME= HOME= git log --stat -C >$(distdir)/ChangeLog; \
|
|
fi
|