Make gobject tests installable
[platform/upstream/glib.git] / gobject / Makefile.am
1 # GObject - GLib Type, Object, Parameter and Signal Library
2 # Copyright (C) 1997,98,99,2000 Tim Janik and Red Hat, Inc.
3 #
4 ## Process this file with automake to produce Makefile.in
5 include $(top_srcdir)/Makefile.decl
6
7 SUBDIRS = .
8 if BUILD_MODULAR_TESTS
9 SUBDIRS += tests 
10 endif
11
12 BUILT_SOURCES=
13 CLEANFILES=
14
15 AM_CPPFLAGS =                                   \
16         -DG_LOG_DOMAIN=\"GLib-GObject\"         \
17         $(glib_INCLUDES)                        \
18         $(GLIB_DEBUG_FLAGS)                     \
19         -DGOBJECT_COMPILATION
20
21 AM_CFLAGS = $(GLIB_WARN_CFLAGS)
22
23 libglib = $(top_builddir)/glib/libglib-2.0.la
24
25 # libraries to compile and install
26 lib_LTLIBRARIES = libgobject-2.0.la
27
28 if OS_WIN32_AND_DLL_COMPILATION
29 if MS_LIB_AVAILABLE
30 noinst_DATA = gobject-2.0.lib
31
32 install_ms_lib_cmd = $(INSTALL) gobject-2.0.lib $(DESTDIR)$(libdir)
33 uninstall_ms_lib_cmd = -rm $(DESTDIR)$(libdir)/gobject-2.0.lib
34 endif
35 endif
36
37 install-ms-lib:
38         $(install_ms_lib_cmd)
39
40 uninstall-ms-lib:
41         $(uninstall_ms_lib_cmd)
42
43 if PLATFORM_WIN32
44 no_undefined = -no-undefined
45 endif
46
47 if OS_WIN32_AND_DLL_COMPILATION
48 gobject_win32_res = gobject-win32-res.o
49 gobject_win32_res_ldflag = -Wl,$(gobject_win32_res)
50 endif
51
52 libgobjectincludedir = $(includedir)/glib-2.0/gobject
53 libgobject_2_0_la_LDFLAGS = $(GLIB_LINK_FLAGS) \
54   $(gobject_win32_res_ldflag) \
55   -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
56   -export-dynamic $(no_undefined)
57
58 libgobject_2_0_la_CFLAGS = $(AM_CFLAGS) $(LIBFFI_CFLAGS) $(GLIB_HIDDEN_VISIBILITY_CFLAGS)
59
60 libgobject_2_0_la_LIBADD = $(libglib) $(LIBFFI_LIBS)
61
62 libgobject_2_0_la_DEPENDENCIES = $(gobject_win32_res)
63
64 #
65 # setup source file variables
66 #
67 # GObject library header files for public installation
68 gobject_public_h_sources = \
69         glib-types.h            \
70         gbinding.h              \
71         gboxed.h                \
72         gclosure.h              \
73         genums.h                \
74         gmarshal.h              \
75         gobject.h               \
76         gparam.h                \
77         gparamspecs.h           \
78         gsignal.h               \
79         gsourceclosure.h        \
80         gtype.h                 \
81         gtypemodule.h           \
82         gtypeplugin.h           \
83         gvalue.h                \
84         gvaluearray.h           \
85         gvaluecollector.h       \
86         gvaluetypes.h           \
87         gobjectnotifyqueue.c
88
89 # GObject library header files that don't get installed
90 gobject_private_h_sources =     \
91         gatomicarray.h          \
92         gtype-private.h
93
94 # GObject library C sources to build the library from
95 gobject_c_sources = \
96         gobject_probes.d        \
97         gatomicarray.c          \
98         gbinding.c              \
99         gboxed.c                \
100         gclosure.c              \
101         genums.c                \
102         gmarshal.c              \
103         gobject.c               \
104         gobject_trace.h         \
105         gparam.c                \
106         gparamspecs.c           \
107         gsignal.c               \
108         gsourceclosure.c        \
109         gtype.c                 \
110         gtypemodule.c           \
111         gtypeplugin.c           \
112         gvalue.c                \
113         gvaluearray.c           \
114         gvaluetransform.c       \
115         gvaluetypes.c
116
117 if ENABLE_DTRACE
118 gobject_probes.h: gobject_probes.d Makefile
119         $(AM_V_GEN) $(DTRACE) -C -h -s $< -o $@.tmp
120         @$(SED) -e "s,define STAP_HAS_SEMAPHORES 1,undef STAP_HAS_SEMAPHORES," < $@.tmp > $@ && rm -f $@.tmp
121 gobject_probes.o: gobject_probes.d Makefile
122         $(AM_V_GEN) $(DTRACE) -G -s $< -o $@
123 BUILT_SOURCES += gobject_probes.h gobject_probes.o
124 CLEANFILES += gobject_probes.h
125 libgobject_2_0_la_LIBADD += gobject_probes.o
126 endif
127
128 if ENABLE_SYSTEMTAP
129 tapset_in_files = gobject.stp.in
130 tapsetdir   = @ABS_TAPSET_DIR@
131 tapset_DATA = $(tapset_in_files:.stp.in=.stp)
132 EXTRA_DIST += $(tapset_in_files)
133 endif
134
135 # non-header sources (headers should be specified in the above variables)
136 # that don't serve as direct make target sources, i.e. they don't have
137 # their own .lo rules and don't get publically installed
138 gobject_extra_sources = \
139         gmarshal.list           \
140         gmarshal.strings
141
142
143 #
144 # setup GObject library sources and their dependancies
145 #
146 gobject_target_headers = $(gobject_public_h_sources)
147 gobject_target_sources = $(gobject_c_sources)
148 EXTRA_HEADERS =
149 EXTRA_DIST += \
150         $(gobject_private_h_sources)    \
151         $(gobject_extra_sources)        \
152         marshal-genstrings.pl
153
154 # This is read by gobject-introspection/misc/ and gtk-doc
155 gobject-public-headers.txt: Makefile
156         $(AM_V_GEN) echo $(gobject_public_h_sources) > $@.tmp && mv $@.tmp $@
157
158 CLEANFILES += gobject-public-headers.txt
159
160 all-local: gobject-public-headers.txt
161
162 #
163 # rules to generate built sources
164 #
165 # setup autogeneration dependancies
166 gen_sources = xgen-gmh xgen-gmc xgen-gms
167 CLEANFILES += $(gen_sources)
168
169 # normal autogeneration rules
170 # all autogenerated files need to be generated in the srcdir,
171 # so old versions get remade and are not confused with newer
172 # versions in the build dir. thus a development setup requires
173 # srcdir to be writable, passing --disable-rebuilds to
174 # ../configure will supress all autogeneration rules.
175
176
177 gmarshal.strings: @REBUILD@ $(srcdir)/gmarshal.list
178         $(AM_V_GEN) grep '^[A-Z]' $(srcdir)/gmarshal.list \
179         | $(SED) -e 's/^/"g_cclosure_marshal_/' -e 's/:/__/' -e 's/,/_/g' -e 's/$$/",/' > xgen-gms \
180         && cp xgen-gms gmarshal.strings \
181         && rm -f xgen-gms xgen-gms~
182
183 glib-genmarshal.o: gmarshal.strings
184
185 # target platform:
186 libgobjectinclude_HEADERS = $(gobject_target_headers)
187 libgobject_2_0_la_SOURCES = $(gobject_target_sources)
188
189 #
190 # programs to compile and install
191 #
192 bin_PROGRAMS = gobject-query glib-genmarshal
193 bin_SCRIPTS = glib-mkenums
194 # source files
195 gobject_query_SOURCES = gobject-query.c
196 glib_genmarshal_SOURCES = glib-genmarshal.c
197 # link programs against libgobject
198 progs_LDADD = ./libgobject-2.0.la $(libglib)
199 glib_genmarshal_LDADD = $(libglib)
200 gobject_query_LDADD = $(progs_LDADD)
201
202 #
203 # auxillary files
204 #
205 EXTRA_DIST +=                   \
206         makefile.msc.in         \
207         gobject.rc.in           \
208         libgobject-gdb.py.in    \
209         glib-mkenums.in
210
211 CLEANFILES += libgobject-gdb.py
212
213 BUILT_EXTRA_DIST = \
214         makefile.msc            \
215         gobject.rc
216
217 gobject-win32-res.o: gobject.rc
218         $(AM_V_GEN) $(WINDRES) gobject.rc $@
219
220 gobject-2.0.lib: libgobject-2.0.la gobject.def
221         lib -machine:@LIB_EXE_MACHINE_FLAG@ -name:libgobject-2.0-$(LT_CURRENT_MINUS_AGE).dll -def:$(builddir)/gobject.def -out:$@
222
223 dist-hook: $(BUILT_EXTRA_DIST) ../build/win32/vs9/gobject.vcproj ../build/win32/vs10/gobject.vcxproj ../build/win32/vs10/gobject.vcxproj.filters
224         files='$(BUILT_EXTRA_DIST)'; \
225         for f in $$files; do \
226           if test -f $$f; then d=.; else d=$(srcdir); fi; \
227           cp $$d/$$f $(distdir) || exit 1; done
228
229 ../build/win32/vs9/gobject.vcproj: $(top_srcdir)/build/win32/vs9/gobject.vcprojin
230         for F in $(libgobject_2_0_la_SOURCES); do \
231                 case $$F in \
232                 *.c) echo '   <File RelativePath="..\..\..\gobject\'$$F'" />' \
233                      ;; \
234                 esac; \
235         done >libgobject.sourcefiles
236         $(CPP) -P - <$(top_srcdir)/build/win32/vs9/gobject.vcprojin >$@
237         rm libgobject.sourcefiles
238
239 ../build/win32/vs10/gobject.vcxproj: $(top_srcdir)/build/win32/vs10/gobject.vcxprojin
240         for F in $(libgobject_2_0_la_SOURCES); do \
241                 case $$F in \
242                 *.c) echo '    <ClCompile Include="..\..\..\gobject\'$$F'" />' \
243                      ;; \
244                 esac; \
245         done >libgobject.vs10.sourcefiles
246         $(CPP) -P - <$(top_srcdir)/build/win32/vs10/gobject.vcxprojin >$@
247         rm libgobject.vs10.sourcefiles
248
249 ../build/win32/vs10/gobject.vcxproj.filters: $(top_srcdir)/build/win32/vs10/gobject.vcxproj.filtersin
250         for F in $(libgobject_2_0_la_SOURCES); do \
251                 case $$F in \
252                 *.c) echo '    <ClCompile Include="..\..\..\gobject\'$$F'"><Filter>Source Files</Filter></ClCompile>' \
253                      ;; \
254                 esac; \
255         done >libgobject.vs10.sourcefiles.filters
256         $(CPP) -P - <$(top_srcdir)/build/win32/vs10/gobject.vcxproj.filtersin >$@
257         rm libgobject.vs10.sourcefiles.filters
258
259 install-data-local: install-ms-lib
260
261 uninstall-local: uninstall-ms-lib uninstall-gdb
262
263 distclean-local:
264         if test $(srcdir) = .; then :; else \
265             rm -f $(BUILT_EXTRA_DIST); \
266         fi
267
268 # install gdb scripts
269 gdbdir = $(datadir)/glib-2.0/gdb
270 dist_gdb_SCRIPTS = gobject.py
271
272 libgobject-gdb.py: libgobject-gdb.py.in
273         $(AM_V_GEN) $(SED) -e "s|\@datadir\@|$(datadir)|" $(srcdir)/libgobject-gdb.py.in > $(builddir)/libgobject-gdb.py
274
275 uninstall-gdb:
276         -rm -r $(DESTDIR)$(datadir)/gdb
277
278 install-data-hook: libgobject-gdb.py
279         mkdir -p $(DESTDIR)$(datadir)/gdb/auto-load/$(ABS_GLIB_RUNTIME_LIBDIR)
280         $(INSTALL) $(builddir)/libgobject-gdb.py $(DESTDIR)$(datadir)/gdb/auto-load/$(ABS_GLIB_RUNTIME_LIBDIR)/libgobject-2.0.so.0.$(LT_CURRENT).$(LT_REVISION)-gdb.py
281 if HAVE_GLIB_RUNTIME_LIBDIR
282         mkdir -p $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
283         mv $(DESTDIR)$(libdir)/libgobject-2.0.so.0 $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
284         mv $(DESTDIR)$(libdir)/libgobject-2.0.so.0.$(LT_CURRENT).$(LT_REVISION) $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
285         rm -f $(DESTDIR)$(libdir)/libgobject-2.0.so
286         ln -s $(GLIB_RUNTIME_LIBDIR)/libgobject-2.0.so.0.$(LT_CURRENT).$(LT_REVISION) $(DESTDIR)$(libdir)/libgobject-2.0.so
287 endif