Initialize Tizen 2.3
[framework/multimedia/gstreamer0.10.git] / mobile / pkgconfig / Makefile.am
1 ### all of the standard pc files we need to generate
2 if HAVE_CHECK
3 CHECK_PC_I = gstreamer-check-@GST_MAJORMINOR@.pc
4 CHECK_PC_U = gstreamer-check-@GST_MAJORMINOR@-uninstalled.pc
5 else
6 CHECK_PC_I =
7 CHECK_PC_U =
8 endif
9
10 pcfiles =                                                       \
11         gstreamer-@GST_MAJORMINOR@.pc                           \
12         gstreamer-base-@GST_MAJORMINOR@.pc                      \
13         $(CHECK_PC_I)                                           \
14         gstreamer-controller-@GST_MAJORMINOR@.pc                \
15         gstreamer-dataprotocol-@GST_MAJORMINOR@.pc              \
16         gstreamer-net-@GST_MAJORMINOR@.pc
17
18 pcfiles_uninstalled =                                           \
19         gstreamer-@GST_MAJORMINOR@-uninstalled.pc               \
20         gstreamer-base-@GST_MAJORMINOR@-uninstalled.pc          \
21         $(CHECK_PC_U)                                           \
22         gstreamer-controller-@GST_MAJORMINOR@-uninstalled.pc    \
23         gstreamer-dataprotocol-@GST_MAJORMINOR@-uninstalled.pc  \
24         gstreamer-net-@GST_MAJORMINOR@-uninstalled.pc
25
26 all-local: $(pcfiles) $(pcfiles_uninstalled)
27
28 cp_verbose = $(cp_verbose_$(V))
29 cp_verbose_ = $(cp_verbose_$(AM_DEFAULT_VERBOSITY))
30 cp_verbose_0 = @echo "  CP     $@";
31
32 ### how to generate pc files
33 %-@GST_MAJORMINOR@.pc: %.pc
34         $(cp_verbose_0)cp $< $@
35 %-@GST_MAJORMINOR@-uninstalled.pc: %-uninstalled.pc
36         $(cp_verbose_0)cp $< $@
37
38 pkgconfigdir = $(libdir)/pkgconfig
39 pkgconfig_DATA = $(pcfiles)
40
41 EXTRA_DIST =                                                    \
42         gstreamer.pc.in                                         \
43         gstreamer-uninstalled.pc.in                             \
44         gstreamer-base.pc.in                                    \
45         gstreamer-base-uninstalled.pc.in                        \
46         gstreamer-check.pc.in                                   \
47         gstreamer-check-uninstalled.pc.in                       \
48         gstreamer-controller.pc.in                              \
49         gstreamer-controller-uninstalled.pc.in                  \
50         gstreamer-dataprotocol.pc.in                            \
51         gstreamer-dataprotocol-uninstalled.pc.in                \
52         gstreamer-net.pc.in                                     \
53         gstreamer-net-uninstalled.pc.in
54
55 CLEANFILES = $(pcfiles) $(pcfiles_uninstalled)