Merge branch 'source-get-id-docs' into 'master'
[glib.git] / gobject / Makefile.am
blob4c28acdffbd53109784a30e17101e8fd14b81ebc
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
7 SUBDIRS = . tests
9 AM_CPPFLAGS =                                   \
10         -DG_LOG_DOMAIN=\"GLib-GObject\"         \
11         $(glib_INCLUDES)                        \
12         $(GLIB_DEBUG_FLAGS)                     \
13         -DGOBJECT_COMPILATION
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
23 if MS_LIB_AVAILABLE
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
28 endif
29 endif
31 install-ms-lib:
32         $(install_ms_lib_cmd)
34 uninstall-ms-lib:
35         $(uninstall_ms_lib_cmd)
37 if PLATFORM_WIN32
38 no_undefined = -no-undefined
39 endif
41 if OS_WIN32_AND_DLL_COMPILATION
42 gobject_win32_res = gobject-win32-res.o
43 gobject_win32_res_ldflag = -Wl,$(gobject_win32_res)
44 endif
46 libgobjectincludedir = $(includedir)/glib-2.0/gobject
47 libgobject_2_0_la_LDFLAGS = $(GLIB_LINK_FLAGS) \
48   $(gobject_win32_res_ldflag) \
49   -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
50   -export-dynamic $(no_undefined)
52 libgobject_2_0_la_CFLAGS = $(AM_CFLAGS) $(LIBFFI_CFLAGS) $(GLIB_HIDDEN_VISIBILITY_CFLAGS)
54 libgobject_2_0_la_LIBADD = $(libglib) $(LIBFFI_LIBS)
56 libgobject_2_0_la_DEPENDENCIES = $(gobject_win32_res)
59 # setup source file variables
61 # GObject library header files for public installation
62 gobject_public_h_sources = \
63         gobject-autocleanups.h  \
64         glib-types.h            \
65         gbinding.h              \
66         gboxed.h                \
67         gclosure.h              \
68         genums.h                \
69         gmarshal.h              \
70         gobject.h               \
71         gparam.h                \
72         gparamspecs.h           \
73         gsignal.h               \
74         gsourceclosure.h        \
75         gtype.h                 \
76         gtypemodule.h           \
77         gtypeplugin.h           \
78         gvalue.h                \
79         gvaluearray.h           \
80         gvaluecollector.h       \
81         gvaluetypes.h           \
82         gobjectnotifyqueue.c
84 # GObject library header files that don't get installed
85 gobject_private_h_sources =     \
86         gatomicarray.h          \
87         gtype-private.h
89 # GObject library C sources to build the library from
90 gobject_c_sources = \
91         gobject_probes.d        \
92         gatomicarray.c          \
93         gbinding.c              \
94         gboxed.c                \
95         gclosure.c              \
96         genums.c                \
97         gmarshal.c              \
98         gobject.c               \
99         gobject_trace.h         \
100         gparam.c                \
101         gparamspecs.c           \
102         gsignal.c               \
103         gsourceclosure.c        \
104         gtype.c                 \
105         gtypemodule.c           \
106         gtypeplugin.c           \
107         gvalue.c                \
108         gvaluearray.c           \
109         gvaluetransform.c       \
110         gvaluetypes.c
112 if ENABLE_DTRACE
114 gobject_probes.h: gobject_probes.d
115         $(AM_V_GEN) $(DTRACE) -C -h -s $< -o $@.tmp
116         @$(SED) \
117                 -e "s,define STAP_HAS_SEMAPHORES 1,undef STAP_HAS_SEMAPHORES," \
118                 -e "s,define _SDT_HAS_SEMAPHORES 1,undef _SDT_HAS_SEMAPHORES," \
119                 < $@.tmp > $@ && rm -f $@.tmp
121 gobject_probes.lo: gobject_probes.d
122         $(AM_V_GEN) $(LIBTOOL) --mode=compile $(AM_V_lt) --tag=CC $(DTRACE) -G -s $< -o $@
124 BUILT_SOURCES += gobject_probes.h gobject_probes.lo
125 CLEANFILES += gobject_probes.h
126 libgobject_2_0_la_LIBADD += gobject_probes.lo
127 endif
129 tapsetdir   = @ABS_TAPSET_DIR@
130 EXTRA_DIST += gobject.stp.in
132 if ENABLE_SYSTEMTAP
133 tapset_DATA = libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@.stp
134 CLEANFILES += $(tapset_DATA)
136 $(tapset_DATA): gobject.stp.in Makefile
137         $(AM_V_GEN)$(SED) \
138                 -e 's|[@]ABS_GLIB_RUNTIME_LIBDIR[@]|$(ABS_GLIB_RUNTIME_LIBDIR)|g' \
139                 -e 's|[@]LT_CURRENT[@]|$(LT_CURRENT)|g' \
140                 -e 's|[@]LT_REVISION[@]|$(LT_REVISION)|g' \
141                 $< > $@
142 endif
144 # non-header sources (headers should be specified in the above variables)
145 # that don't serve as direct make target sources, i.e. they don't have
146 # their own .lo rules and don't get publically installed
147 gobject_extra_sources =
150 # setup GObject library sources and their dependancies
152 gobject_target_headers = $(gobject_public_h_sources)
153 gobject_target_sources = $(gobject_c_sources)
154 EXTRA_HEADERS =
155 EXTRA_DIST += \
156         $(gobject_private_h_sources)    \
157         $(gobject_extra_sources)
159 # This is read by gobject-introspection/misc/ and gtk-doc
160 gobject-public-headers.txt: Makefile
161         $(AM_V_GEN) echo $(gobject_public_h_sources) > $@.tmp && mv $@.tmp $@
163 CLEANFILES += gobject-public-headers.txt
165 all-local: gobject-public-headers.txt
168 # rules to generate built sources
170 # setup autogeneration dependancies
171 gen_sources = xgen-gmh xgen-gmc xgen-gms
172 CLEANFILES += $(gen_sources)
174 # normal autogeneration rules
175 # all autogenerated files need to be generated in the srcdir,
176 # so old versions get remade and are not confused with newer
177 # versions in the build dir. thus a development setup requires
178 # srcdir to be writable, passing --disable-rebuilds to
179 # ../configure will supress all autogeneration rules.
182 # target platform:
183 libgobjectinclude_HEADERS = $(gobject_target_headers)
184 libgobject_2_0_la_SOURCES = $(gobject_target_sources)
187 # programs to compile and install
189 bin_PROGRAMS = gobject-query
190 bin_SCRIPTS = glib-mkenums glib-genmarshal
191 # source files
192 gobject_query_SOURCES = gobject-query.c
193 # link programs against libgobject
194 progs_LDADD = ./libgobject-2.0.la $(libglib)
195 gobject_query_LDADD = $(progs_LDADD)
198 # auxillary files
200 EXTRA_DIST +=                   \
201         gobject.rc.in           \
202         libgobject-gdb.py.in    \
203         glib-genmarshal.in      \
204         glib-mkenums.in
206 CLEANFILES += libgobject-gdb.py
208 BUILT_EXTRA_DIST += \
209         gobject.rc
211 gobject-win32-res.o: gobject.rc
212         $(AM_V_GEN) $(WINDRES) gobject.rc $@
214 gobject.def: libgobject-2.0.la
215         $(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
217 gobject-2.0.lib: libgobject-2.0.la gobject.def
218         $(AM_V_GEN) lib.exe -machine:@LIB_EXE_MACHINE_FLAG@ -name:libgobject-2.0-$(LT_CURRENT_MINUS_AGE).dll -def:$(builddir)/gobject.def -out:$@
220 dist-hook: $(BUILT_EXTRA_DIST)
221         files='$(BUILT_EXTRA_DIST)'; \
222         for f in $$files; do \
223           if test -f $$f; then d=.; else d=$(srcdir); fi; \
224           cp $$d/$$f $(distdir) || exit 1; done
226 install-data-local: install-ms-lib
228 uninstall-local: uninstall-ms-lib uninstall-gdb
230 distclean-local:
231         if test $(srcdir) = .; then :; else \
232             rm -f $(BUILT_EXTRA_DIST); \
233         fi
235 # install gdb scripts
236 gdbdir = $(datadir)/glib-2.0/gdb
237 dist_gdb_DATA = gobject_gdb.py
239 all-local: libgobject-gdb.py
240 libgobject-gdb.py: libgobject-gdb.py.in
241         $(AM_V_GEN) $(SED) -e "s|\@datadir\@|$(datadir)|" $(srcdir)/libgobject-gdb.py.in > $(builddir)/libgobject-gdb.py
243 uninstall-gdb:
244         -rm -r $(DESTDIR)$(datadir)/gdb
246 if HAVE_GLIB_RUNTIME_LIBDIR
247 ABS_GLIB_RUNTIME_LIBDIR = $(realpath $(libdir)/$(GLIB_RUNTIME_LIBDIR))
248 else
249 ABS_GLIB_RUNTIME_LIBDIR = $(libdir)
250 endif
252 install-data-hook: libgobject-gdb.py
253         mkdir -p $(DESTDIR)$(datadir)/gdb/auto-load/$(ABS_GLIB_RUNTIME_LIBDIR)
254         $(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
255 if HAVE_GLIB_RUNTIME_LIBDIR
256         mkdir -p $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
257         mv $(DESTDIR)$(libdir)/libgobject-2.0.so.0 $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
258         mv $(DESTDIR)$(libdir)/libgobject-2.0.so.0.$(LT_CURRENT).$(LT_REVISION) $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
259         rm -f $(DESTDIR)$(libdir)/libgobject-2.0.so
260         ln -s $(GLIB_RUNTIME_LIBDIR)/libgobject-2.0.so.0.$(LT_CURRENT).$(LT_REVISION) $(DESTDIR)$(libdir)/libgobject-2.0.so
261 endif