diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-01 16:23:15 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-01 16:23:15 -0400 |
commit | fa75ccbd2d61321d49f1fe7e3f8a215062ad7a83 (patch) | |
tree | cc26361a88427a3b0e7103dd3290f9b69d767cb7 /build-aux | |
parent | e32e227d140160b27405da8640c28a78c4756ef0 (diff) |
Makefiles: learn about configure
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/Makefile.once.tail/20-systemd.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/build-aux/Makefile.once.tail/20-systemd.mk b/build-aux/Makefile.once.tail/20-systemd.mk index 9b70688fad..7e18da1449 100644 --- a/build-aux/Makefile.once.tail/20-systemd.mk +++ b/build-aux/Makefile.once.tail/20-systemd.mk @@ -21,6 +21,13 @@ # You should have received a copy of the GNU Lesser General Public License # along with systemd; If not, see <http://www.gnu.org/licenses/>. +$(topsrcdir)/configure: $(topsrcdir)/configure.ac + cd $(@D) && autoreconf +$(topoutdir)/config.status: $(topsrcdir)/configure + cd $(@D) && $(abspath $<) +$(addprefix $(topoutdir)/,config.mk automake.mk autoconf.mk gnustandards.mk po/Makefile.in): $(topoutdir)/%: $(topoutdir)/config.status $(topsrcdir)/%.in + cd $(topoutdir) && ./config.status --file=$* + # Let's run all tests of the test suite, but under valgrind. Let's # exclude perl/python/shell scripts we have in there .PHONY: valgrind-tests |