diff options
author | P. J. McDermott <pj@pehjota.net> | 2017-07-22 13:18:06 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2017-07-22 13:18:06 (EDT) |
commit | 66dcb285508923eef16a1e4cd0cc9650290f23d1 (patch) | |
tree | 2742b34f40619688ea869d130917ba5f2b9acd90 /Makefile.am | |
parent | 2282af0de7d5f86903ca063b50d2fe591b2d6e02 (diff) |
Makefile.am: Move includes to end
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am index ec5b51f..7b4ab00 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,13 +15,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -include $(top_srcdir)/src/local.mk -include $(top_srcdir)/lib/local.mk -include $(top_srcdir)/lib/cmd/local.mk -include $(top_srcdir)/man/local.mk -include $(top_srcdir)/locale/local.mk -include $(top_srcdir)/tests/local.mk - if IN_GIT PACKAGE_VERSION_GIT = $$(git describe --tags --dirty | sed 's|^.*/||') else @@ -147,3 +140,10 @@ dist-hook: .sh.ms: $(AM_V_GEN)$(MKDIR_P) "$$(dirname $@)" $(AM_V_at)cp $< $@ + +include $(top_srcdir)/src/local.mk +include $(top_srcdir)/lib/local.mk +include $(top_srcdir)/lib/cmd/local.mk +include $(top_srcdir)/man/local.mk +include $(top_srcdir)/locale/local.mk +include $(top_srcdir)/tests/local.mk |