gimarshallingtests: Add string_ to boxed structure
[platform/upstream/gobject-introspection.git] / Makefile.am
1 man_MANS =
2 EXTRA_DIST =
3 lib_LTLIBRARIES =
4 noinst_LTLIBRARIES =
5 BUILT_SOURCES =
6 CLEANFILES = $(BUILT_SOURCES)
7 INTROSPECTION_GIRS =
8 check_LTLIBRARIES =
9 check_PROGRAMS =
10 bin_PROGRAMS =
11 bin_SCRIPTS =
12 GTESTER_PROGS =
13 noinst_PROGRAMS = $(GTESTER_PROGS)
14
15 include common.mk
16 include Makefile.introspection
17
18 include Makefile-cmph.am
19 include Makefile-girepository.am
20 include Makefile-giscanner.am
21 include Makefile-examples.am
22 include Makefile-gir.am
23 include Makefile-tools.am
24 include Makefile-msvcproj.am
25
26 ## Process this file with automake to produce Makefile.in
27 ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
28
29 SUBDIRS = . docs tests build
30
31 DIST_SUBDIRS = m4 $(SUBDIRS)
32 DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
33
34 man_MANS +=                     \
35         docs/g-ir-compiler.1    \
36         docs/g-ir-generate.1    \
37         docs/g-ir-scanner.1
38
39 pkgconfigdir = $(libdir)/pkgconfig
40 pkgconfig_DATA = gobject-introspection-1.0.pc gobject-introspection-no-export-1.0.pc
41
42 m4dir = $(datadir)/aclocal
43 m4_DATA = m4/introspection.m4
44
45 makedir = $(datadir)/gobject-introspection-1.0
46 dist_make_DATA = Makefile.introspection
47
48 EXTRA_DIST +=                   \
49         COPYING.LGPL            \
50         COPYING.GPL             \
51         CONTRIBUTORS            \
52         $(pkgconfig_DATA)       \
53         $(man_MANS)             \
54         $(m4_DATA)              \
55         misc/pep8.py            \
56         misc/pre-commit         \
57         misc/pyflakes.py
58
59 check-local:
60         gtester --verbose $(GTESTER_PROGS)
61         @test ! -d $(top_srcdir)/.git || (test -f $(top_srcdir)/.git/hooks/pre-commit || install misc/pre-commit .git/hooks/pre-commit)
62         @echo "TEST: PEP-8 INQUISITION"
63         @find $(top_srcdir)/giscanner -name \*.py | sort | uniq | xargs $(PYTHON) $(top_srcdir)/misc/pep8.py --repeat --exclude=config.py
64         @echo "TEST: Annotation pattern programs"
65         PYTHONPATH="$(top_builddir):$(top_srcdir)" $(PYTHON) $(top_srcdir)/tests/scanner/annotationparser/test_patterns.py
66         @echo "TEST: GTK-Doc Annotation Parser"
67         PYTHONPATH="$(top_builddir):$(top_srcdir)" $(PYTHON) $(top_srcdir)/tests/scanner/annotationparser/test_parser.py
68         @touch $(top_builddir)/.make-check-passed
69
70 check-pyflakes:
71         @echo "  CHECK Pyflakes"
72         @find $(top_srcdir)/giscanner -name \*.py | sort | uniq | xargs $(PYTHON) $(top_srcdir)/misc/pyflakes.py
73
74
75 # Colin's handy Makefile bits for:
76 # 1) stuffing tarballs with pre-generated scripts from your workstation
77 # 2) bumping configure.ac version post-release
78 # 3) tagging correctly in git
79 # 4) uploading to gnome.org
80 # To use:
81 #  $ make check
82 #  $ make dist
83 #  $ make prepare-minor-release
84
85 # Customize to taste
86 TAG_PREFIX=GOBJECT_INTROSPECTION_
87 COMPRESSION=.xz
88
89
90 PACKAGE=@PACKAGE@
91 VERSION=@VERSION@
92 DISTNAME=$(PACKAGE)-$(VERSION).tar$(COMPRESSION)
93 TAG_VERSION=$(shell echo $(VERSION) |sed s/\\\./_/g)
94
95 prepare-release-tag: Makefile
96         git tag -m "Tag $(TAG_VERSION)" -a $(TAG_PREFIX)$(TAG_VERSION)
97
98 prepare-minor-release: $(DISTNAME) prepare-release-tag Makefile
99         env top_srcdir=$(top_srcdir) python $(top_srcdir)/tools/verbump.py
100
101 upload-release: $(DISTNAME) Makefile
102         git log origin/master..master
103         @echo -n "Ok to push? [y/N] "; read ans; test x$$ans == xy || exit 1
104         git push --tags origin master:master
105         scp $(DISTNAME) master.gnome.org:
106         ssh master.gnome.org install-module $(DISTNAME)
107