android: make it ready for androgenizer
[platform/upstream/gstreamer.git] / libs / gst / net / Makefile.am
1 lib_LTLIBRARIES = libgstnet-@GST_MAJORMINOR@.la
2
3 libgstnet_@GST_MAJORMINOR@_includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/net
4 libgstnet_@GST_MAJORMINOR@_include_HEADERS = \
5     gstnet.h \
6     gstnetclientclock.h \
7     gstnettimepacket.h \
8     gstnettimeprovider.h
9
10 libgstnet_@GST_MAJORMINOR@_la_SOURCES = \
11     gstnetclientclock.c \
12     gstnettimepacket.c \
13     gstnettimeprovider.c
14
15 libgstnet_@GST_MAJORMINOR@_la_CFLAGS = $(GST_OBJ_CFLAGS)
16 libgstnet_@GST_MAJORMINOR@_la_LIBADD = $(GST_OBJ_LIBS) $(INET_ATON_LIBS) $(WIN32_LIBS)
17 libgstnet_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
18
19 CLEANFILES = *.gcno *.gcda *.gcov
20
21 %.c.gcov: .libs/libgstnet_@GST_MAJORMINOR@_la-%.gcda %.c
22         $(GCOV) -b -f -o $^ > $@.out
23
24 gcov: $(libgstnet_@GST_MAJORMINOR@_la_SOURCES:=.gcov)
25
26 Android.mk: Makefile.am
27         androgenizer -:PROJECT gstreamer -:SHARED libgstnet-@GST_MAJORMINOR@ -:TAGS eng debug \
28          -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
29          -:SOURCES $(libgstnet_@GST_MAJORMINOR@_la_SOURCES) \
30          -:CFLAGS $(libgstnet_@GST_MAJORMINOR@_la_CFLAGS) \
31          -:LDFLAGS $(libgstnet_@GST_MAJORMINOR@_la_LDFLAGS) \
32                    $(libgstnet_@GST_MAJORMINOR@_la_LIBADD) \
33          -:HEADER_TARGET gstreamer-@GST_MAJORMINOR@/gst/net \
34          -:HEADERS $(libgstnet_@GST_MAJORMINOR@_include_HEADERS) \
35          -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
36         > $@
37
38
39 if HAVE_INTROSPECTION
40 BUILT_GIRSOURCES = GstNet-@GST_MAJORMINOR@.gir
41
42 gir_headers=$(patsubst %,$(srcdir)/%, $(libgstnet_@GST_MAJORMINOR@_include_HEADERS))
43 gir_sources=$(patsubst %,$(srcdir)/%, $(libgstnet_@GST_MAJORMINOR@_la_SOURCES))
44 gir_cincludes=--c-include="gst/net/gstnet.h"
45
46 GstNet-@GST_MAJORMINOR@.gir: $(INTROSPECTION_SCANNER) libgstnet-@GST_MAJORMINOR@.la
47         $(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
48                 $(INTROSPECTION_SCANNER) -v --namespace GstNet \
49                 --strip-prefix=Gst \
50                 --nsversion=@GST_MAJORMINOR@ \
51                 -I$(top_srcdir) \
52                 -I$(top_srcdir)/libs \
53                 -I$(top_builddir) \
54                 -I$(top_builddir)/libs \
55                 $(gir_cincludes) \
56                 --add-include-path=$(top_builddir)/gst \
57                 --library-path=$(top_builddir)/gst \
58                 --library=$(top_builddir)/gst/libgstreamer-0.10.la \
59                 --library=libgstnet-0.10.la \
60                 --include=Gst-0.10 \
61                 --libtool="$(top_builddir)/libtool" \
62                 --pkg gstreamer-0.10 \
63                 --pkg-export="gstreamer-net-0.10" \
64                 --output $@ \
65                 $(gir_headers) \
66                 $(gir_sources)
67
68 # INTROSPECTION_GIRDIR/INTROSPECTION_TYPELIBDIR aren't the right place to
69 # install anything - we need to install inside our prefix.
70 girdir = $(datadir)/gir-1.0
71 gir_DATA = $(BUILT_GIRSOURCES)
72
73 typelibsdir = $(libdir)/girepository-1.0/
74
75 typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib)
76
77 %.typelib: %.gir $(INTROSPECTION_COMPILER)
78         $(AM_V_GEN)$(INTROSPECTION_COMPILER) --includedir=$(srcdir) --includedir=$(builddir) --includedir=$(top_builddir)/gst $(INTROSPECTION_COMPILER_OPTS) $< -o $(@F)
79
80 CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA)
81 endif