Skip to content
Snippets Groups Projects
Commit 65b11230 authored by Goik Martin's avatar Goik Martin
Browse files

Frame rate adjustment

parent 20141dc3
No related branches found
No related tags found
No related merge requests found
......@@ -43,12 +43,12 @@ JAVADOCDESTDIR=${BUILDNAVI}/Ref/api
#Video webm-->mp4 conversion rule
#
%.webm.mp4:%.webm
avconv -i $< -acodec libx264 -c:a libvorbis $<.mp4 || rm -f $<.mp4
avconv -i $< -acodec libx264 -b:v 256k -c:a libvorbis $<.mp4 || rm -f $<.mp4
webmSet = $(shell /bin/ls target/*/Ref/Video/*.webm)
mp4Set = $(foreach webmFile, $(webmSet), $(webmFile).mp4 )
all: ${BUILDROOT}/${BUILDNAVI}/printversion.pdf ${BUILDROOT}/${BUILDNAVI}/index.html ${BUILDROOT}/${BUILDNONAVI}/index.html $(mp4Set)
all: ${BUILDROOT}/stage1 $(mp4Set)
cd ${BUILDROOT}/resources/Generate;\
for module in ${DOCMODULES}; do \
pushd $$module;\
......@@ -64,6 +64,9 @@ all: ${BUILDROOT}/${BUILDNAVI}/printversion.pdf ${BUILDROOT}/${BUILDNAVI}/index.
done;
cd ${BUILDROOT}; tar c- ${DOCMODULES} | tar -x -C ${BUILDNAVI}
${BUILDROOT}/stage1: ${BUILDROOT}/${BUILDNAVI}/printversion.pdf ${BUILDROOT}/${BUILDNAVI}/index.html ${BUILDROOT}/${BUILDNONAVI}/index.html
touch ${BUILDROOT}/stage1
${BUILDROOT}/${BUILDNAVI}/index.html: ${BUILDROOT}/${SCRIPTBASENAME}.xml
cd ${BUILDROOT}; mkdir -p ${BUILDNAVI};\
/usr/share/xmlmind.goik/bin/xxetool convert -p eclipse.plugin.id $(PLUGINID) ${PPARAM} db5.toEclipseHelp \
......
......@@ -5,6 +5,7 @@ numCores=$(shell nproc --all)
DOCMODULES = Sd1 Sda1 Sda2
doc:
cd Doc;$(MAKE) -j ${numCores} target/stage1
cd Doc;$(MAKE) -j ${numCores} all
all:doc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment