mirror of
https://github.com/shadow-maint/shadow.git
synced 2026-01-26 05:57:53 +00:00
'make distcheck' runs ./configure (among other things). That command should inherit the flags passed on the command line, as they are the flags necessary to build in the current system. This also allows testing different configurations in the same system. Until now, we only tested the default automagic configuration. With this change, one can test the same default automagic configuration, by not passing any flags to ./configure, or they can test more specific configurations, by passing flags. This allows removing the hardcoded AM_DISTCHECK_CONFIGURE_FLAGS in the "Makefile.am". Signed-off-by: Alejandro Colomar <alx@kernel.org>
29 lines
675 B
Makefile
29 lines
675 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = lib
|
|
|
|
if ENABLE_SUBIDS
|
|
SUBDIRS += libsubid
|
|
endif
|
|
|
|
SUBDIRS += src po doc etc tests/unit
|
|
|
|
if ENABLE_REGENERATE_MAN
|
|
SUBDIRS += man
|
|
endif
|
|
|
|
CLEANFILES = man/8.out man/po/remove-potcdate.* man/*/login.defs.d man/*/*.mo
|
|
|
|
EXTRA_DIST = NEWS README tests/
|
|
|
|
dist-hook:
|
|
chmod -R u+w $(distdir)/tests
|
|
chmod u+w $(distdir)
|
|
mv $(distdir)/tests/unit $(distdir)/realunittest
|
|
mv $(distdir)/tests/tests $(distdir)/realtests
|
|
rm -rf $(distdir)/tests
|
|
mv $(distdir)/realtests $(distdir)/tests
|
|
rm -rf $(distdir)/tests/unit $(distdir)/tests/Makefile*
|
|
mv $(distdir)/realunittest $(distdir)/tests/unit
|