docs/gst/Makefile.am: Ignore a few more internal headers
[platform/upstream/gstreamer.git] / gst / Makefile.am
1 lib_LTLIBRARIES = libgstreamer-@GST_MAJORMINOR@.la
2
3 if HAVE_CHECK
4 SUBDIRS_CHECK = check
5 else
6 SUBDIRS_CHECK =
7 endif
8
9 if GST_DISABLE_LOADSAVE
10 GST_LOADSAVE_SRC = 
11 else
12 GST_LOADSAVE_SRC = gstxml.c
13 endif
14
15 if GST_DISABLE_PARSE
16 GST_PARSE_SRC = 
17 SUBDIRS_PARSE = 
18 GST_PARSE_LA = 
19 else
20 GST_PARSE_SRC = gstparse.c
21 SUBDIRS_PARSE = parse
22 GST_PARSE_LA = parse/libgstparse.la 
23 endif
24
25 if GST_DISABLE_TRACE
26 GST_TRACE_SRC = 
27 else
28 GST_TRACE_SRC = gsttrace.c
29 endif
30
31 if GST_DISABLE_ENUMTYPES
32 GST_ENUMTYPES_SRC = 
33 else
34 GST_ENUMTYPES_SRC = gstenumtypes.c
35 endif
36
37 if GST_DISABLE_INDEX
38 GST_INDEX_SRC = 
39 SUBDIRS_INDEX =
40 else
41 GST_INDEX_SRC = gstindex.c
42 SUBDIRS_INDEX = indexers
43 endif
44
45 if GST_DISABLE_PLUGIN
46 GST_PLUGIN_SRC = 
47 else
48 GST_PLUGIN_SRC = gstplugin.c
49 endif
50
51 if GST_DISABLE_URI
52 GST_URI_SRC = 
53 else
54 GST_URI_SRC = gsturi.c
55 endif
56
57 SUBDIRS = $(SUBDIRS_PARSE) . base elements $(SUBDIRS_INDEX) $(SUBDIRS_CHECK)
58 DIST_SUBDIRS = base elements parse indexers check
59
60 # make variables for all generated source and header files to make the
61 # distinction clear
62                                                                                 
63 built_header_configure = gstconfig.h gstversion.h
64 built_header_make = gstenumtypes.h gstmarshal.h
65 built_source_make = $(GST_ENUMTYPES_SRC) gstmarshal.c
66
67 EXTRA_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
68         gstmarshal.list gstxml.c gstparse.c gsttrace.c
69
70 libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
71         glib-compat.c           \
72         gst.c                   \
73         gstobject.c             \
74         gstbin.c                \
75         gstbuffer.c             \
76         gstbus.c                \
77         gstcaps.c               \
78         gstchildproxy.c         \
79         gstclock.c              \
80         gstelement.c            \
81         gstelementfactory.c     \
82         gsterror.c              \
83         gstevent.c              \
84         gstfilter.c             \
85         gstformat.c             \
86         gstghostpad.c           \
87         $(GST_INDEX_SRC)        \
88         gstinfo.c               \
89         gstinterface.c          \
90         gstiterator.c           \
91         gstmessage.c            \
92         gstminiobject.c         \
93         gstpad.c                \
94         gstpipeline.c           \
95         gstplugin.c             \
96         gstpluginfeature.c      \
97         gstquery.c              \
98         gstqueryutils.c         \
99         gstqueue.c              \
100         gstregistry.c           \
101         gstregistryxml.c        \
102         gststructure.c          \
103         gstsystemclock.c        \
104         gsttaglist.c            \
105         gsttagsetter.c  \
106         gsttask.c               \
107         $(GST_TRACE_SRC)        \
108         gsttypefind.c           \
109         gsttypefindfactory.c    \
110         $(GST_URI_SRC)          \
111         gsturitype.c            \
112         gstutils.c              \
113         gstvalue.c              \
114         $(GST_PARSE_SRC)        \
115         $(GSTARCH_SRCS)         \
116         $(GST_LOADSAVE_SRC)
117
118 # do not put files in the distribution that are generated
119 nodist_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = $(built_source_make)
120
121 # BUILT_SOURCES are built on make all/check/install before all other targets
122 BUILT_SOURCES = \
123         $(built_header_configure)       \
124         $(built_header_make)            \
125         $(built_source_make)
126 # CLEANFILES is for files generated by make
127 CLEANFILES = $(built_header_make) $(built_source_make) $(as_dll_cleanfiles)
128 # DISTCLEANFILES is for files generated by configure
129 DISTCLEANFILES = $(built_header_configure)
130                                                                                 
131 libgstreamer_@GST_MAJORMINOR@_la_CFLAGS =       \
132         -D_GNU_SOURCE                           \
133         $(GST_LIB_CFLAGS)                       \
134         -DG_LOG_DOMAIN=g_log_domain_gstreamer   \
135         -DGST_MAJORMINOR=\""$(GST_MAJORMINOR)"\" 
136 libgstreamer_@GST_MAJORMINOR@_la_LIBADD = \
137         $(GST_LIB_LIBS) $(GST_PARSE_LA)
138 libgstreamer_@GST_MAJORMINOR@_la_LDFLAGS = \
139         @GST_LT_LDFLAGS@ -version-info @GST_LIBVERSION@ \
140         -export-symbols-regex [_]*\(gst_\|Gst\|GST_\).* \
141         -no-undefined
142
143 libgstreamer_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst
144
145 gst_headers =                   \
146         gst.h                   \
147         gstobject.h             \
148         gstbin.h                \
149         gstbuffer.h             \
150         gstbus.h                \
151         gstcaps.h               \
152         gstchildproxy.h         \
153         gstclock.h              \
154         gstcompat.h             \
155         gstelement.h            \
156         gstelementfactory.h     \
157         gsterror.h              \
158         gstevent.h              \
159         gstfilter.h             \
160         gstformat.h             \
161         gstghostpad.h           \
162         gstindex.h              \
163         gstinfo.h               \
164         gstinterface.h          \
165         gstiterator.h           \
166         gstmacros.h             \
167         gstmessage.h            \
168         gstminiobject.h         \
169         gstpad.h                \
170         gstpipeline.h           \
171         gstplugin.h             \
172         gstpluginfeature.h      \
173         gstquery.h              \
174         gstqueryutils.h         \
175         gstqueue.h              \
176         gststructure.h          \
177         gstsystemclock.h        \
178         gsttaglist.h            \
179         gsttagsetter.h  \
180         gsttask.h               \
181         gsttrace.h              \
182         gsttypefind.h           \
183         gsttypefindfactory.h    \
184         gsturi.h                \
185         gsturitype.h            \
186         gstutils.h              \
187         gstvalue.h              \
188         gstregistry.h           \
189         gstparse.h              \
190         gstxml.h
191
192 libgstreamer_@GST_MAJORMINOR@include_HEADERS = $(gst_headers)
193 nodist_libgstreamer_@GST_MAJORMINOR@include_HEADERS = \
194         $(built_header_configure) $(built_header_make)
195
196 noinst_HEADERS =                \
197         gettext.h               \
198         glib-compat.h           \
199         gst-i18n-lib.h          \
200         gst-i18n-app.h          \
201         gst_private.h
202
203 gstmarshal.h: gstmarshal.list
204         glib-genmarshal --header --prefix=gst_marshal $(srcdir)/gstmarshal.list > gstmarshal.h.tmp
205         mv gstmarshal.h.tmp gstmarshal.h
206
207 gstmarshal.c: gstmarshal.list gst_private.h
208         echo "#include \"gst_private.h\"" > gstmarshal.c.tmp
209         echo "#include \"glib-object.h\"" >> gstmarshal.c.tmp
210         echo "#include \"gstmarshal.h\"" >> gstmarshal.c.tmp
211         glib-genmarshal --body --prefix=gst_marshal $(srcdir)/gstmarshal.list >> gstmarshal.c.tmp
212         mv gstmarshal.c.tmp gstmarshal.c
213
214 gstenumtypes.h: $(gst_headers)
215         glib-mkenums \
216         --fhead "#ifndef __GST_ENUM_TYPES_H__\n#define __GST_ENUM_TYPES_H__\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \
217         --fprod "\n/* enumerations from \"@filename@\" */\n" \
218         --vhead "GType @enum_name@_get_type (void);\n#define GST_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n"         \
219         --ftail "G_END_DECLS\n\n#endif /* __GST_ENUM_TYPES_H__ */" \
220         $^ > gstenumtypes.h
221
222 gstenumtypes.c: $(gst_headers)
223         glib-mkenums \
224         --fhead "#include \"gst_private.h\"\n#include <gst/gst.h>" \
225         --fprod "\n/* enumerations from \"@filename@\" */" \
226         --vhead "GType\n@enum_name@_get_type (void)\n{\n  static GType etype = 0;\n  if (etype == 0) {\n    static const G@Type@Value values[] = {"     \
227         --vprod "      { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
228         --vtail "      { 0, NULL, NULL }\n    };\n    etype = g_@type@_register_static (\"@EnumName@\", values);\n  }\n  return etype;\n}\n" \
229         $^ > gstenumtypes.c