Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/scanner/Makefile.am
blob: dd3532909c37f865d7e6ca0c93ed5b1b948cbb13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
include $(top_srcdir)/common.mk

# We need to build a shared library, which can be dlopened
# it does not work with noinst_LTLIBRARIES
testlib_LTLIBRARIES = \
	libannotation.la \
	libdrawable.la \
	libfoo.la \
	libutility.la \
	libgtkfrob.la
testlibdir = $(prefix)/unused
install-testlibLTLIBRARIES: # prevent it from being installed

AM_CPPFLAGS = -I$(top_srcdir)/girepository
AM_CFLAGS = $(GOBJECT_CFLAGS) $(GTHREAD_CFLAGS)
AM_LDFLAGS = -avoid-version
LIBS = $(GOBJECT_LIBS) $(GTHREAD_LIBS)

libannotation_la_SOURCES = $(srcdir)/annotation.c $(srcdir)/annotation.h
libdrawable_la_SOURCES = $(srcdir)/drawable.c $(srcdir)/drawable.h
libfoo_la_SOURCES = $(srcdir)/foo.c $(srcdir)/foo.h
libutility_la_SOURCES = $(srcdir)/utility.c $(srcdir)/utility.h
libgtkfrob_la_SOURCES = $(srcdir)/gtkfrob.c $(srcdir)/gtkfrob.h

if OS_WIN32
AM_LDFLAGS += -no-undefined
endif

# .gir --[scanner]-> .typelib --[generate]-> .tgir
GIRS =
TYPELIBS = $(GIRS:.gir=.typelib)
CHECKGIRS = $(GIRS:.gir=.gir.check)
EXPECTEDGIRS = $(GIRS:.gir=-expected.gir)
TGIRS = $(GIRS:.gir=.tgir)
CHECKTGIRS = $(GIRS:.gir=.tgir.check)
EXPECTEDTGIRS = $(GIRS:.gir=-expected.tgir)
CLEANFILES = $(TYPELIBS)  $(GIRS)
BUILT_SOURCES = $(TYPELIBS) $(GIRS) $(TGIRS)
EXTRA_DIST = $(EXPECTEDGIRS) $(EXPECTEDTGIRS)

annotation-1.0.gir: libannotation.la annotation.c annotation.h utility-1.0.gir $(SCANNER_BIN) $(SCANNER_LIBS) Makefile
	 $(CHECK_DEBUG) $(SCANNER) \
	--include=GObject-2.0 \
	--include=utility-1.0 \
        --libtool="$(LIBTOOL)" \
	--library=annotation \
	--namespace=annotation \
	--nsversion=1.0 \
	--pkg gobject-2.0 \
	$(srcdir)/annotation.h $(srcdir)/annotation.c \
	 --output $@
GIRS += annotation-1.0.gir

drawable-1.0.gir: libdrawable.la drawable.c drawable.h utility-1.0.gir $(SCANNER_BIN) $(SCANNER_LIBS) Makefile
	$(CHECK_DEBUG) $(SCANNER) \
	--include=GObject-2.0 \
	--include=utility-1.0 \
        --libtool="$(LIBTOOL)" \
	--library=drawable \
	--namespace=drawable \
	--nsversion=1.0 \
	--pkg gobject-2.0 \
	$(srcdir)/drawable.h $(srcdir)/drawable.c \
	 --output $@
GIRS += drawable-1.0.gir

foo-1.0.gir: libfoo.la foo.c foo.h utility-1.0.gir $(SCANNER_BIN) $(SCANNER_LIBS) Makefile
	$(CHECK_DEBUG) $(SCANNER) \
	--include=GObject-2.0 \
	--include=utility-1.0 \
        --libtool="$(LIBTOOL)" \
	--library=foo \
	--namespace=foo \
	--nsversion=1.0 \
	--pkg gobject-2.0 \
	$(srcdir)/foo.h $(srcdir)/foo.c \
	 --output $@
GIRS += foo-1.0.gir

utility-1.0.gir: libutility.la utility.h $(SCANNER_BIN) $(SCANNER_LIBS) Makefile
	$(CHECK_DEBUG) $(SCANNER) \
	--include=GObject-2.0 \
        --libtool="$(LIBTOOL)" \
	--library=utility \
	--namespace=utility \
	--nsversion=1.0 \
	--pkg gobject-2.0 \
	$(libutility_la_SOURCES) \
	--output $@
GIRS += utility-1.0.gir

# This one tests different --namespace and --strip-prefix
GtkFrob-1.0.gir: libgtkfrob.la gtkfrob.h $(SCANNER_BIN) $(SCANNER_LIBS) Makefile
	$(CHECK_DEBUG) $(SCANNER) \
	--include=GObject-2.0 \
        --libtool="$(LIBTOOL)" \
	--library=gtkfrob \
	--namespace=GtkFrob \
	--strip-prefix=Gtk \
	--nsversion=1.0 \
	--pkg gobject-2.0 \
	$(libgtkfrob_la_SOURCES) \
	--output $@
GIRS += GtkFrob-1.0.gir

noinst_PROGRAMS = barapp

barapp_SOURCES = $(srcdir)/barapp.c $(srcdir)/barapp.h
barapp_LDADD = $(top_builddir)/girepository/libgirepository-1.0.la
barapp_LDFLAGS = -export-dynamic
BarApp-1.0.gir: barapp $(SCANNER_BIN) $(SCANNER_LIBS) Makefile
	$(SCANNER) \
	--include=GObject-2.0 \
        --libtool="$(LIBTOOL)" \
	--program=./barapp \
	--namespace=BarApp \
	--strip-prefix=Bar \
	--nsversion=1.0 \
	--pkg gobject-2.0 \
	$(barapp_SOURCES) \
	--output $@
GIRS += BarApp-1.0.gir

pre-check:
	@if test "$(top_builddir)" != "$(top_srcdir)"; then \
	   cp -f $(top_srcdir)/giscanner/*.py $(top_builddir)/giscanner; \
	fi
	@echo "Running scanner checks..."

post-check:
	@echo "========================"
	@echo "All scanner tests passed"
	@echo "========================"
	@if test "$(top_builddir)" != "$(top_srcdir)"; then \
	   rm -f $(top_builddir)/giscanner/*.py*; \
	fi

%.gir.check: %.gir
	@diff -u -U 10 $(srcdir)/$*-expected.gir $*.gir && echo "* $*.gir"

# stop %.typelib rule from building %-expected.tgir (via %-expected.typelib)
%-expected.typelib:
	@true

%.typelib: %.gir $(top_builddir)/tools/g-ir-compiler$(EXEEXT) Makefile
	$(top_builddir)/tools/g-ir-compiler --includedir=. --includedir=$(top_builddir)/gir $< -o $@

%.tgir: %.typelib $(top_builddir)/tools/g-ir-generate$(EXEEXT) Makefile
	 $(DEBUG) $(top_builddir)/tools/g-ir-generate --includedir=. --includedir=$(top_builddir)/gir $< -o $@

%.tgir.check: %.tgir
	@diff -u -U 10 $(srcdir)/$*-expected.tgir $*.tgir; \
	if test "$$?" = "0"; then \
	    echo "* $*.tgir"; \
	    rm -f $*.tgir; \
	else \
	    exit 1; \
	fi

distclean-local:
	@if test "$(top_builddir)" != "$(top_srcdir)"; then \
	    rm -f $(top_builddir)/tests/scanner/*.tgir; \
	fi

check-local: pre-check
check-local: $(CHECKGIRS) $(CHECKTGIRS) $(TYPELIBS)

check-local: post-check