1 # GObject - GLib Type, Object, Parameter and Signal Library
2 # Copyright (C) 1997,98,99,2000 Tim Janik and Red Hat, Inc.
4 ## Process this file with automake to produce Makefile.in
5 include $(top_srcdir)/glib.mk
10 -DG_LOG_DOMAIN=\"GLib-GObject\" \
15 AM_CFLAGS = $(GLIB_WARN_CFLAGS)
17 libglib = $(top_builddir)/glib/libglib-2.0.la
19 # libraries to compile and install
20 lib_LTLIBRARIES = libgobject-2.0.la
22 if OS_WIN32_AND_DLL_COMPILATION
24 noinst_DATA += gobject-2.0.lib
26 install_ms_lib_cmd = $(INSTALL) gobject-2.0.lib $(DESTDIR)$(libdir)
27 uninstall_ms_lib_cmd = -rm $(DESTDIR)$(libdir)/gobject-2.0.lib
35 $(uninstall_ms_lib_cmd)
38 no_undefined = -no-undefined
41 if OS_WIN32_AND_DLL_COMPILATION
42 gobject_win32_res = gobject-win32-res.o
43 gobject_win32_res_ldflag = -Wl,$(gobject_win32_res)
46 libgobjectincludedir = $(includedir)/glib-2.0/gobject
47 libgobject_2_0_la_LDFLAGS = $(GLIB_LINK_FLAGS) \
48 $(GOBJECT_LINK_FLAGS) \
49 $(gobject_win32_res_ldflag) \
50 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
51 -export-dynamic $(no_undefined)
53 libgobject_2_0_la_CFLAGS = $(AM_CFLAGS) $(LIBFFI_CFLAGS) $(GLIB_HIDDEN_VISIBILITY_CFLAGS)
55 libgobject_2_0_la_LIBADD = $(libglib) $(LIBFFI_LIBS)
57 libgobject_2_0_la_DEPENDENCIES = $(gobject_win32_res)
60 # setup source file variables
62 # GObject library header files for public installation
63 gobject_public_h_sources = \
84 # GObject library header files that don't get installed
85 gobject_private_h_sources = \
89 # GObject library C sources to build the library from
113 DTCOMPILE = $(patsubst -W%,,$(LTCOMPILE))
114 DTCFLAGS = $(patsubst -W%,,$(CFLAGS))
116 gobject_probes.h: gobject_probes.d
117 $(AM_V_GEN) $(DTRACE) -C -h -s $< -o $@.tmp
118 @$(SED) -e "s,define STAP_HAS_SEMAPHORES 1,undef STAP_HAS_SEMAPHORES," < $@.tmp > $@ && rm -f $@.tmp
120 gobject_probes.lo: gobject_probes.d
121 $(AM_V_GEN) env CC="$(DTCOMPILE)" CFLAGS="$(DTCFLAGS)" $(DTRACE) -G -s $< -o $@
123 BUILT_SOURCES += gobject_probes.h gobject_probes.lo
124 CLEANFILES += gobject_probes.h
125 libgobject_2_0_la_LIBADD += gobject_probes.lo
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)
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 = \
144 # setup GObject library sources and their dependancies
146 gobject_target_headers = $(gobject_public_h_sources)
147 gobject_target_sources = $(gobject_c_sources)
150 $(gobject_private_h_sources) \
151 $(gobject_extra_sources) \
152 marshal-genstrings.pl
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 $@
158 CLEANFILES += gobject-public-headers.txt
160 all-local: gobject-public-headers.txt
163 # rules to generate built sources
165 # setup autogeneration dependancies
166 gen_sources = xgen-gmh xgen-gmc xgen-gms
167 CLEANFILES += $(gen_sources)
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.
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~
183 glib-genmarshal.o: gmarshal.strings
186 libgobjectinclude_HEADERS = $(gobject_target_headers)
187 libgobject_2_0_la_SOURCES = $(gobject_target_sources)
190 # programs to compile and install
192 bin_PROGRAMS = gobject-query glib-genmarshal
193 bin_SCRIPTS = glib-mkenums
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)
208 libgobject-gdb.py.in \
211 CLEANFILES += libgobject-gdb.py
213 BUILT_EXTRA_DIST += \
217 gobject-win32-res.o: gobject.rc
218 $(AM_V_GEN) $(WINDRES) gobject.rc $@
220 gobject.def: libgobject-2.0.la
221 $(AM_V_GEN) dumpbin.exe -exports .libs/libgobject-2.0-0.dll | awk 'BEGIN { print "EXPORTS" } / +[[:digit:]]+ +[[:xdigit:]]+ +[[:xdigit:]]+/{ print $$4 }' > gobject.def.tmp && mv gobject.def.tmp gobject.def
223 gobject-2.0.lib: libgobject-2.0.la gobject.def
224 $(AM_V_GEN) lib.exe -machine:@LIB_EXE_MACHINE_FLAG@ -name:libgobject-2.0-$(LT_CURRENT_MINUS_AGE).dll -def:$(builddir)/gobject.def -out:$@
226 dist-hook: $(BUILT_EXTRA_DIST) ../build/win32/vs9/gobject.vcproj ../build/win32/vs10/gobject.vcxproj ../build/win32/vs10/gobject.vcxproj.filters
227 files='$(BUILT_EXTRA_DIST)'; \
228 for f in $$files; do \
229 if test -f $$f; then d=.; else d=$(srcdir); fi; \
230 cp $$d/$$f $(distdir) || exit 1; done
232 ../build/win32/vs9/gobject.vcproj: $(top_srcdir)/build/win32/vs9/gobject.vcprojin
233 for F in $(libgobject_2_0_la_SOURCES); do \
235 *.c) echo ' <File RelativePath="..\..\..\gobject\'$$F'" />' \
238 done >libgobject.sourcefiles
239 $(CPP) -P - <$(top_srcdir)/build/win32/vs9/gobject.vcprojin >$@
240 rm libgobject.sourcefiles
242 ../build/win32/vs10/gobject.vcxproj: $(top_srcdir)/build/win32/vs10/gobject.vcxprojin
243 for F in $(libgobject_2_0_la_SOURCES); do \
245 *.c) echo ' <ClCompile Include="..\..\..\gobject\'$$F'" />' \
248 done >libgobject.vs10.sourcefiles
249 $(CPP) -P - <$(top_srcdir)/build/win32/vs10/gobject.vcxprojin >$@
250 rm libgobject.vs10.sourcefiles
252 ../build/win32/vs10/gobject.vcxproj.filters: $(top_srcdir)/build/win32/vs10/gobject.vcxproj.filtersin
253 for F in $(libgobject_2_0_la_SOURCES); do \
255 *.c) echo ' <ClCompile Include="..\..\..\gobject\'$$F'"><Filter>Source Files</Filter></ClCompile>' \
258 done >libgobject.vs10.sourcefiles.filters
259 $(CPP) -P - <$(top_srcdir)/build/win32/vs10/gobject.vcxproj.filtersin >$@
260 rm libgobject.vs10.sourcefiles.filters
262 install-data-local: install-ms-lib
264 uninstall-local: uninstall-ms-lib uninstall-gdb
267 if test $(srcdir) = .; then :; else \
268 rm -f $(BUILT_EXTRA_DIST); \
271 # install gdb scripts
272 gdbdir = $(datadir)/glib-2.0/gdb
273 dist_gdb_SCRIPTS = gobject.py
275 libgobject-gdb.py: libgobject-gdb.py.in
276 $(AM_V_GEN) $(SED) -e "s|\@datadir\@|$(datadir)|" $(srcdir)/libgobject-gdb.py.in > $(builddir)/libgobject-gdb.py
279 -rm -r $(DESTDIR)$(datadir)/gdb
281 install-data-hook: libgobject-gdb.py
282 mkdir -p $(DESTDIR)$(datadir)/gdb/auto-load/$(ABS_GLIB_RUNTIME_LIBDIR)
283 $(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
284 if HAVE_GLIB_RUNTIME_LIBDIR
285 mkdir -p $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
286 mv $(DESTDIR)$(libdir)/libgobject-2.0.so.0 $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
287 mv $(DESTDIR)$(libdir)/libgobject-2.0.so.0.$(LT_CURRENT).$(LT_REVISION) $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
288 rm -f $(DESTDIR)$(libdir)/libgobject-2.0.so
289 ln -s $(GLIB_RUNTIME_LIBDIR)/libgobject-2.0.so.0.$(LT_CURRENT).$(LT_REVISION) $(DESTDIR)$(libdir)/libgobject-2.0.so