summaryrefslogtreecommitdiff
path: root/extensions/CustomTarget_so_activex_x64.mk
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-05-09 23:15:42 +0200
committerMichael Stahl <mstahl@redhat.com>2012-05-10 10:47:44 +0200
commita9550f63cd7a7e064901b2c997375ed384781eea (patch)
treeb35a7bf6077c5b40390cbde11dffe30ef90d57c9 /extensions/CustomTarget_so_activex_x64.mk
parentce1ac0851fe2e975f3fb47178730b914608610cf (diff)
normalize variable names in gbuild user makefiles
Variables should have module name as prefix to prevent collisions.
Diffstat (limited to 'extensions/CustomTarget_so_activex_x64.mk')
-rw-r--r--extensions/CustomTarget_so_activex_x64.mk17
1 files changed, 8 insertions, 9 deletions
diff --git a/extensions/CustomTarget_so_activex_x64.mk b/extensions/CustomTarget_so_activex_x64.mk
index 88b07b19d9e8..8e72c7a4cbc2 100644
--- a/extensions/CustomTarget_so_activex_x64.mk
+++ b/extensions/CustomTarget_so_activex_x64.mk
@@ -27,17 +27,16 @@
$(eval $(call gb_CustomTarget_CustomTarget,extensions/source/activex))
-EXSA := $(call gb_CustomTarget_get_workdir,extensions/source/activex)
-
$(call gb_CustomTarget_get_target,extensions/source/activex) : \
- $(EXSA)/SOActionsApproval.cxx \
- $(EXSA)/SOActiveX.cxx \
- $(EXSA)/SOComWindowPeer.cxx \
- $(EXSA)/SODispatchInterceptor.cxx \
- $(EXSA)/StdAfx2.cxx \
- $(EXSA)/so_activex.cxx \
+ $(call gb_CustomTarget_get_workdir,extensions/source/activex)/SOActionsApproval.cxx \
+ $(call gb_CustomTarget_get_workdir,extensions/source/activex)/SOActiveX.cxx \
+ $(call gb_CustomTarget_get_workdir,extensions/source/activex)/SOComWindowPeer.cxx \
+ $(call gb_CustomTarget_get_workdir,extensions/source/activex)/SODispatchInterceptor.cxx \
+ $(call gb_CustomTarget_get_workdir,extensions/source/activex)/StdAfx2.cxx \
+ $(call gb_CustomTarget_get_workdir,extensions/source/activex)/so_activex.cxx \
-$(EXSA)/% : $(SRCDIR)/extensions/source/activex/%
+$(call gb_CustomTarget_get_workdir,extensions/source/activex)/% : \
+ $(SRCDIR)/extensions/source/activex/%
cp $< $@
# vim:set shiftwidth=4 tabstop=4 noexpandtab: