aboutsummaryrefslogtreecommitdiff
path: root/codegenerator.mk
diff options
context:
space:
mode:
authorRainer Hochecker <fernetmenta@online.de>2014-12-16 12:21:41 +0100
committerRainer Hochecker <fernetmenta@online.de>2014-12-16 12:21:41 +0100
commit1eb76885b36989a62737cdfb35a20954feb5b6b9 (patch)
tree8ed135fbac9d3e4e45d48244445848fd576990ae /codegenerator.mk
parent7c97b3358ec978d510b53eed8d5cca64d5c39c36 (diff)
Revert "change xbmc/ path to src/ in all files"
This reverts commit 4949be256667f3e500e52b7084476ae1f2b00d92.
Diffstat (limited to 'codegenerator.mk')
-rw-r--r--codegenerator.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/codegenerator.mk b/codegenerator.mk
index a037bfefaa..5ecb0c0273 100644
--- a/codegenerator.mk
+++ b/codegenerator.mk
@@ -1,5 +1,5 @@
TOPDIR ?= .
-INTERFACES_DIR ?= src/interfaces
+INTERFACES_DIR ?= xbmc/interfaces
JAVA ?= $(shell which java)
ifeq ($(JAVA),)
@@ -35,7 +35,7 @@ GENERATED += $(GENDIR)/AddonModuleXbmcplugin.cpp
GENERATED += $(GENDIR)/AddonModuleXbmcaddon.cpp
GENERATED += $(GENDIR)/AddonModuleXbmcvfs.cpp
-GENERATE_DEPS += $(TOPDIR)/src/interfaces/legacy/*.h $(TOPDIR)/src/interfaces/python/typemaps/*.intm $(TOPDIR)/src/interfaces/python/typemaps/*.outtm
+GENERATE_DEPS += $(TOPDIR)/xbmc/interfaces/legacy/*.h $(TOPDIR)/xbmc/interfaces/python/typemaps/*.intm $(TOPDIR)/xbmc/interfaces/python/typemaps/*.outtm
vpath %.i $(INTERFACES_DIR)/swig
@@ -49,7 +49,7 @@ $(GENDIR)/%.cpp: $(GENDIR)/%.xml $(JAVA) $(SWIG) $(DOXY_XML_PATH)
$(GENDIR)/%.xml: %.i $(SWIG) $(JAVA) $(GENERATE_DEPS)
mkdir -p $(GENDIR)
- $(SWIG) -w401 -c++ -o $@ -xml -I$(TOPDIR)/src -xmllang python $<
+ $(SWIG) -w401 -c++ -o $@ -xml -I$(TOPDIR)/xbmc -xmllang python $<
codegenerated: $(DOXYGEN) $(SWIG) $(JAVA) $(GENERATED) $(GENERATED_JSON) $(GENERATED_ADDON_JSON)