From: David Herrmann Date: Wed, 15 Jul 2015 13:36:54 +0000 (+0200) Subject: build: add convenience target 'build-sources' X-Git-Tag: v223~98 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7ee7b225bd2fc3e7a3980f5fb7b10dfc6e205578;p=thirdparty%2Fsystemd.git build: add convenience target 'build-sources' This target allows to trigger a build of $(BUILT_SOURCES) manually. This is handy if you tend to use 'make systemd-foobar' to directly build a single binary. Those do not pull in $(BUILT_SOURCES), unfortunately. See automake docs for that. --- diff --git a/Makefile.am b/Makefile.am index c038fed36b2..3c0ce32692b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6139,6 +6139,9 @@ hwdb-update: http://standards.ieee.org/develop/regauth/iab/iab.txt && \ ./ids-update.pl ) +.PHONY: built-sources +built-sources: $(BUILT_SOURCES) + .PHONY: git-tag git-tag: git tag -s "v$(VERSION)" -m "systemd $(VERSION)"