diff options
author | Fernando <fernando@endlessm.com> | 2013-12-06 13:50:13 -0800 |
---|---|---|
committer | Fernando <fernando@endlessm.com> | 2013-12-10 13:37:36 -0800 |
commit | 9e51e0059b4413ce54ad04eb81c54185dae84bab (patch) | |
tree | b48255ae224f20fa1706cc8a7f1603645d3e1430 /tools/Makefile.am.inc | |
parent | c26763c821ff2b2c74f6529081b15b73fa4a5f86 (diff) |
Integrated JSON extraction utility
The utility used in eos-english and eos-programming-app was integrated and installed as part of the SDK
CR comments addressed include:
- Integrated new facilities available on GTK
- Removed duplicate prototype declaration
- Reformatted CLEANFILES var declaration
- Used configure.ac to get @PACKAGE_VERSION@
- Added version() and usage() utilities
[endlessm/eos-sdk#335]
Diffstat (limited to 'tools/Makefile.am.inc')
-rw-r--r-- | tools/Makefile.am.inc | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/tools/Makefile.am.inc b/tools/Makefile.am.inc index ab668df..47744b2 100644 --- a/tools/Makefile.am.inc +++ b/tools/Makefile.am.inc @@ -2,7 +2,8 @@ bin_SCRIPTS = \ tools/eos-run-test \ - tools/eos-application-manifest/eos-application-manifest + tools/eos-application-manifest/eos-application-manifest \ + tools/eos-json-extractor/eos-json-extractor \ $(NULL) # Use the following script to replace $datadir inside the script, as suggested @@ -13,6 +14,7 @@ tools_edit = sed \ -e 's|@libexecdir[@]|$(libexecdir)|g' \ -e 's|@PACKAGE_VERSION[@]|$(PACKAGE_VERSION)|g' \ $(NULL) + tools/eos-application-manifest/eos-application-manifest: tools/eos-application-manifest/eos-application-manifest.in Makefile $(AM_V_GEN)$(MKDIR_P) tools/eos-application-manifest && \ rm -f $@ $@.tmp && \ @@ -21,8 +23,14 @@ tools/eos-application-manifest/eos-application-manifest: tools/eos-application-m chmod a-w $@.tmp && \ mv $@.tmp $@ -CLEANFILES += tools/eos-application-manifest/eos-application-manifest -EXTRA_DIST += tools/eos-application-manifest/eos-application-manifest.in +CLEANFILES += \ + tools/eos-application-manifest/eos-application-manifest \ + tools/eos-json-extractor/eos-json-extractor \ + $(NULL) +EXTRA_DIST += \ + tools/eos-application-manifest/eos-application-manifest.in \ + tools/eos-json-extractor/eos-json-extractor.in \ + $(NULL) commandsdir = $(libexecdir)/eos-application-manifest/commands dist_commands_DATA = \ |