diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2013-11-20 19:21:34 +0100 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2013-11-20 21:15:33 +0100 |
commit | 60c64b437c6678dd1d3fa3a6fc2b7da0480890d4 (patch) | |
tree | 98ecca3deadfc4c394aa5aaf9a3ade8ee5458fd1 /Makefile.in | |
parent | 00e9a7a5571bb4bec49a2c0cbe39692bc37ea110 (diff) |
some namespacing
Change-Id: I7f4fc456d7e9690443d94175e94b69db50c3e2b5
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in index cafe312ef9d1..07b811a72647 100644 --- a/Makefile.in +++ b/Makefile.in @@ -73,7 +73,7 @@ endif # # Partial Build # -define gbuild_module_rules +define gb_Top_GbuildModuleRules .PHONY: $(1) $(1).all $(1).build $(1).check $(1).clean $(1).showdeliverables $(1).subsequentcheck $(1): bootstrap fetch @@ -87,13 +87,13 @@ $(1).all: bootstrap fetch endef -define gbuild_modules_rules -$(foreach m,$(1),$(call gbuild_module_rules,$(notdir $(m)),$(m))) +define gb_Top_GbuildModulesRules +$(foreach m,$(1),$(call gb_Top_GbuildModuleRules,$(notdir $(m)),$(m))) endef gbuild_modules := $(patsubst $(SRCDIR)/%/,%,$(dir $(wildcard $(SRCDIR)/*/Module_*.mk $(SRCDIR)/external/*/Module_*.mk))) -$(eval $(call gbuild_modules_rules,$(gbuild_modules))) +$(eval $(call gb_Top_GbuildModulesRules,$(gbuild_modules))) gbuild_TARGETS := AllLangHelp \ AllLangPackage \ @@ -388,7 +388,7 @@ dump-deps: dump-deps-png: @$(SRCDIR)/bin/module-deps.pl $(GNUMAKE) $(SRCDIR)/Makefile.gbuild | dot -Tpng -o lo.png -define GbuildToIdeIntegration +define gb_Top_GbuildToIdeIntegration $(1)-ide-integration: cd $(SRCDIR) && (make cmd -npf Makefile.gbuild all || true) | $(SRCDIR)/bin/gbuild-to-ide --ide $(1) @@ -396,7 +396,7 @@ endef $(foreach ide,\ kdevelop, \ -$(eval $(call GbuildToIdeIntegration,$(ide)))) +$(eval $(call gb_Top_GbuildToIdeIntegration,$(ide)))) endif # MAKE_RESTARTS |