meso-web

Sources of the |Méso|Star> website
git clone git://git.meso-star.fr/meso-web.git
Log | Files | Refs | README | LICENSE

commit 3018ad21347bc734323db1028a032e57b687601e
parent cb5551a7fb7d5571aa655b1f9f23f7bd8fab1bb5
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed,  6 Dec 2017 11:49:54 +0100

Add the Star-Engine files to the publish and clean targets

Diffstat:
M.gitignore | 4++--
MMakefile | 7++++++-
Msolstice.sh | 4++--
Mstar-engine.sh | 4++--
4 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -3,13 +3,13 @@ stardis.html index.html about.html pgp_signatures.html -release_notes.html.in solstice.html solstice-downloads.html solstice-resources.html +solstice-release-notes.html.in star-engine.html star-engine-downloads.html -star_engine_release_notes.html.in +star-engine-release-notes.html.in downloads/ *.sw[po] *.[ao] diff --git a/Makefile b/Makefile @@ -39,8 +39,11 @@ clean: solstice.html \ solstice-downloads.html \ solstice-resources.html \ + solstice-release-notes.html.in \ + star-engine.html \ + star-engine-downloads.html \ stardis.html \ - release_notes.html.in \ + star-engine-release-notes.html.in \ downloads/*.sig \ downloads/Solstice-ABG.pdf \ downloads/Solstice-ABG-rsrc.zip \ @@ -56,6 +59,8 @@ publish: solstice.html \ solstice-downloads.html \ solstice-resources.html \ + star-engine-downloads.html \ + star-engine.html \ stardis.html \ meso.css \ particles.png \ diff --git a/solstice.sh b/solstice.sh @@ -167,7 +167,7 @@ tar xf $arch.tar $markdown $arch/share/doc/solstice/README.md \ | sed '/^<h2>Release notes<\/h2>/,$!d' \ | sed '/^<h2>Licenses<\/h2>/,$d' \ - > $dir_curr/release_notes.html.in + > $dir_curr/solstice-release-notes.html.in cd $dir_curr ################################################################################ @@ -188,7 +188,7 @@ echo "Write solstice-downloads.html" print_header Solstice Downloads; echo '<header><h1>Downloads</h1></header>'; print_downloads Solstice; - cat release_notes.html.in; + cat solstice-release-notes.html.in; print_footer; } > solstice-downloads.html; diff --git a/star-engine.sh b/star-engine.sh @@ -78,7 +78,7 @@ echo "Generate the release notes" $markdown $2 \ | sed '/^<h2>Release notes<\/h2>/,$!d' \ | sed '/^<h2>Licenses<\/h2>/,$d' \ - > star_engine_release_notes.html.in + > star-engine-release-notes.html.in ################################################################################ # Generate the overview page @@ -98,7 +98,7 @@ echo "Write star-engine-downloads.html" print_header Star-Engine Downloads; echo '<header><h1>Downloads</h1></header>'; print_downloads Star-Engine; - cat star_engine_release_notes.html.in; + cat star-engine-release-notes.html.in; print_footer; } > star-engine-downloads.html;