diff options
author | P. J. McDermott <pj@pehjota.net> | 2015-12-07 00:11:33 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2015-12-07 00:14:24 (EST) |
commit | f2e1862b3228e44a8b8fe272a0d9b118f4970af2 (patch) | |
tree | 7a93aaf3daef54fd37db6b563c860bbf161d7c99 | |
parent | a348f8aadf84f8c90462ae1328d49578808a3da3 (diff) |
Makefile.am: Move include directives to bottom
-rw-r--r-- | Makefile.am | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Makefile.am b/Makefile.am index a26cd2a..cde00b1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -23,12 +23,6 @@ MANUAL = ProteanOS Development Kit Manual bin_PROGRAMS = prokit prokit_SOURCES = - -include $(top_srcdir)/src/local.mk -include $(top_srcdir)/man/local.mk -include $(top_srcdir)/locale/local.mk -include $(top_srcdir)/tests/local.mk - prokit_SHPPFLAGS = \ -DPKGDATADIR="$(pkgdatadir)" \ -DLOCALEDIR="$(localedir)" \ @@ -205,3 +199,8 @@ release: .sh.ms: $(AM_V_GEN)$(MKDIR_P) "$$(dirname $@)" $(AM_V_at)cp $< $@ + +include $(top_srcdir)/src/local.mk +include $(top_srcdir)/man/local.mk +include $(top_srcdir)/locale/local.mk +include $(top_srcdir)/tests/local.mk |