Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 4 | |
michael@0 | 5 | gcli_commands_internal_FILES = $(wildcard $(srcdir)/commands/*) |
michael@0 | 6 | gcli_commands_internal_DEST = $(FINAL_TARGET)/modules/devtools/gcli/commands |
michael@0 | 7 | INSTALL_TARGETS += gcli_commands_internal |
michael@0 | 8 | |
michael@0 | 9 | gcli_commands_FILES = $(wildcard $(srcdir)/source/lib/gcli/commands/*) |
michael@0 | 10 | gcli_commands_DEST = $(FINAL_TARGET)/modules/devtools/gcli/commands |
michael@0 | 11 | INSTALL_TARGETS += gcli_commands |
michael@0 | 12 | |
michael@0 | 13 | gcli_connectors_FILES = $(wildcard $(srcdir)/source/lib/gcli/connectors/*) |
michael@0 | 14 | gcli_connectors_DEST = $(FINAL_TARGET)/modules/devtools/gcli/connectors |
michael@0 | 15 | INSTALL_TARGETS += gcli_connectors |
michael@0 | 16 | |
michael@0 | 17 | gcli_converters_FILES = $(wildcard $(srcdir)/source/lib/gcli/converters/*) |
michael@0 | 18 | gcli_converters_DEST = $(FINAL_TARGET)/modules/devtools/gcli/converters |
michael@0 | 19 | INSTALL_TARGETS += gcli_converters |
michael@0 | 20 | |
michael@0 | 21 | gcli_fields_FILES = $(wildcard $(srcdir)/source/lib/gcli/fields/*) |
michael@0 | 22 | gcli_fields_DEST = $(FINAL_TARGET)/modules/devtools/gcli/fields |
michael@0 | 23 | INSTALL_TARGETS += gcli_fields |
michael@0 | 24 | |
michael@0 | 25 | gcli_languages_FILES = $(wildcard $(srcdir)/source/lib/gcli/languages/*) |
michael@0 | 26 | gcli_languages_DEST = $(FINAL_TARGET)/modules/devtools/gcli/languages |
michael@0 | 27 | INSTALL_TARGETS += gcli_languages |
michael@0 | 28 | |
michael@0 | 29 | gcli_mozui_FILES = $(wildcard $(srcdir)/source/lib/gcli/mozui/*) |
michael@0 | 30 | gcli_mozui_DEST = $(FINAL_TARGET)/modules/devtools/gcli/mozui |
michael@0 | 31 | INSTALL_TARGETS += gcli_mozui |
michael@0 | 32 | |
michael@0 | 33 | gcli_types_FILES = $(wildcard $(srcdir)/source/lib/gcli/types/*) |
michael@0 | 34 | gcli_types_DEST = $(FINAL_TARGET)/modules/devtools/gcli/types |
michael@0 | 35 | INSTALL_TARGETS += gcli_types |
michael@0 | 36 | |
michael@0 | 37 | gcli_ui_FILES = $(wildcard $(srcdir)/source/lib/gcli/ui/*) |
michael@0 | 38 | gcli_ui_DEST = $(FINAL_TARGET)/modules/devtools/gcli/ui |
michael@0 | 39 | INSTALL_TARGETS += gcli_ui |
michael@0 | 40 | |
michael@0 | 41 | gcli_util_FILES = $(wildcard $(srcdir)/source/lib/gcli/util/*) |
michael@0 | 42 | gcli_util_DEST = $(FINAL_TARGET)/modules/devtools/gcli/util |
michael@0 | 43 | INSTALL_TARGETS += gcli_util |
michael@0 | 44 | |
michael@0 | 45 | gcli_root_FILES = $(wildcard $(srcdir)/source/lib/gcli/*) |
michael@0 | 46 | gcli_root_DEST = $(FINAL_TARGET)/modules/devtools/gcli |
michael@0 | 47 | INSTALL_TARGETS += gcli_root |
michael@0 | 48 | |
michael@0 | 49 | include $(topsrcdir)/config/rules.mk |
michael@0 | 50 | |
michael@0 | 51 | libs:: |
michael@0 | 52 | $(INSTALL) $(IFLAGS1) $(srcdir)/*.jsm $(FINAL_TARGET)/modules/devtools |