summaryrefslogtreecommitdiff
path: root/Makefile-giscanner.am
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2013-04-25 17:28:55 +0200
committerDieter Verfaillie <dieterv@optionexplicit.be>2013-05-07 15:36:09 +0200
commite7e1ba84f31759cec59460be93bcbd01f1add62a (patch)
treea6b564a5c1d2e4635d507d69b2c31db243f072fa /Makefile-giscanner.am
parentbb482abafe4bc6d88cbbc4abc36967a3012e9f50 (diff)
downloadgobject-introspection-e7e1ba84f31759cec59460be93bcbd01f1add62a.tar.gz
giscanner: move odict.OrderedDict into a collections package
because we'll add more related code to collections later on https://bugzilla.gnome.org/show_bug.cgi?id=699536
Diffstat (limited to 'Makefile-giscanner.am')
-rw-r--r--Makefile-giscanner.am10
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile-giscanner.am b/Makefile-giscanner.am
index e8def0ee..47750864 100644
--- a/Makefile-giscanner.am
+++ b/Makefile-giscanner.am
@@ -26,14 +26,14 @@ libgiscanner_la_CFLAGS = $(GOBJECT_CFLAGS) $(GIO_CFLAGS)
# Python module
pkgpyexecdir = $(pkglibdir)/giscanner
pkgpyexec_LTLIBRARIES = _giscanner.la
-pkgpyexec_PYTHON = \
+pkgpyexec_PYTHON = \
giscanner/__init__.py \
giscanner/annotationmain.py \
giscanner/annotationparser.py \
giscanner/ast.py \
giscanner/cachestore.py \
giscanner/codegen.py \
- giscanner/docmain.py \
+ giscanner/docmain.py \
giscanner/docwriter.py \
giscanner/dumper.py \
giscanner/introspectablepass.py \
@@ -41,7 +41,6 @@ pkgpyexec_PYTHON = \
giscanner/girwriter.py \
giscanner/gdumpparser.py \
giscanner/libtoolimporter.py \
- giscanner/odict.py \
giscanner/maintransformer.py \
giscanner/message.py \
giscanner/shlibs.py \
@@ -53,6 +52,11 @@ pkgpyexec_PYTHON = \
giscanner/utils.py \
giscanner/xmlwriter.py
+collectionsdir = $(pkgpyexecdir)/collections
+collections_PYTHON = \
+ giscanner/collections/__init__.py \
+ giscanner/collections/ordereddict.py
+
templatedir = $(pkglibdir)
nobase_dist_template_DATA = \
giscanner/doctemplates/base.tmpl \