2002-08-09 09:29:10 +00:00
|
|
|
EXTRA_DIST = html2xml.py
|
2002-04-29 20:38:39 +00:00
|
|
|
|
2003-01-05 16:19:46 +00:00
|
|
|
CLEANFILES = *.devhelp
|
|
|
|
devhelp_files = \
|
|
|
|
gstreamer-@GST_MAJORMINOR@.devhelp \
|
|
|
|
gstreamer-libs-@GST_MAJORMINOR@.devhelp
|
2002-03-03 18:02:57 +00:00
|
|
|
|
2003-01-05 16:19:46 +00:00
|
|
|
all-am: $(devhelp_files)
|
2002-03-03 18:02:57 +00:00
|
|
|
|
2003-01-05 16:19:46 +00:00
|
|
|
devhelp:
|
2002-03-03 18:02:57 +00:00
|
|
|
cd ../gst && make
|
2002-08-09 09:29:10 +00:00
|
|
|
$(PYTHON) ./html2xml.py ../gst/html
|
2003-01-05 16:19:46 +00:00
|
|
|
sed 's@base=""@base="@HTML_DIR@/gstreamer-@GST_MAJORMINOR@"@g' html.devhelp > gstreamer-@GST_MAJORMINOR@.devhelp && \
|
|
|
|
perl -i -p -e 's/name="html"/name="gstreamer-@GST_MAJORMINOR@"/' gstreamer-@GST_MAJORMINOR@.devhelp && \
|
2002-03-03 18:02:57 +00:00
|
|
|
rm html.devhelp
|
2002-04-15 09:21:14 +00:00
|
|
|
cd ../libs && make
|
2002-08-09 09:29:10 +00:00
|
|
|
$(PYTHON) ./html2xml.py ../libs/html
|
2003-01-05 16:19:46 +00:00
|
|
|
sed 's@base=""@base="@HTML_DIR@/gstreamer-libs-@GST_MAJORMINOR@"@g' html.devhelp > gstreamer-libs-@GST_MAJORMINOR@.devhelp && \
|
|
|
|
perl -i -p -e 's/name="html"/name="gstreamer-libs-@GST_MAJORMINOR@"/' gstreamer-libs-@GST_MAJORMINOR@.devhelp && \
|
2002-03-03 18:02:57 +00:00
|
|
|
rm html.devhelp
|
2003-01-05 16:19:46 +00:00
|
|
|
|
|
|
|
gstreamer-@GST_MAJORMINOR@.devhelp: devhelp
|
|
|
|
gstreamer-libs-@GST_MAJORMINOR@.devhelp: devhelp
|
|
|
|
|