diff options
author | P. J. McDermott <pj@pehjota.net> | 2015-12-06 23:41:28 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2015-12-06 23:41:28 (EST) |
commit | b63a5bb1168f1e354666cec0cf92ef3bdeb7bf3e (patch) | |
tree | 49fd99870d3a3daba5626e02a555c0ba9f318961 | |
parent | f5b6ec699ba58f2942f610499487906b49b2992d (diff) |
Makefile.am: Move include directives
-rw-r--r-- | Makefile.am | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index 965744d..6f6a56f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,6 +18,12 @@ # along with the ProteanOS Development Kit. If not, see # <http://www.gnu.org/licenses/>. +MANUAL = ProteanOS Development Kit Manual + +bin_PROGRAMS = prokit + +prokit_SOURCES = + include $(top_srcdir)/src/local.mk include $(top_srcdir)/lib/local.mk include $(top_srcdir)/lib/cmd/local.mk @@ -27,10 +33,7 @@ include $(top_srcdir)/man/local.mk include $(top_srcdir)/locale/local.mk include $(top_srcdir)/tests/local.mk -MANUAL = ProteanOS Development Kit Manual - -bin_PROGRAMS = prokit -prokit_SOURCES = \ +prokit_SOURCES += \ $(bin_sources) \ $(pkgdata_sources) \ $(pkgdatacmd_sources) \ |