star-build

Automation tool for project installation
git clone git://git.meso-star.fr/star-build.git
Log | Files | Refs | README | LICENSE

commit 3585b32d16f633130d478eb7e66af8e105f760b2
parent e81a129db8edba2698ff645a8e42459e8f41c88d
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Tue, 25 Jul 2023 14:37:46 +0200

Rewrite the README file to make it less verbose

Delete the configuration section and invite the caller to read the
config.mk file as the first step in running star-build and let him
discover the available options.

Diffstat:
MREADME.md | 16++--------------
Mconfig.mk | 3++-
2 files changed, 4 insertions(+), 15 deletions(-)

diff --git a/README.md b/README.md @@ -13,11 +13,11 @@ and C++11 compiler. ## Running star-build -Install the default build, i.e. that is the only one setuped in `sgs.sh`: +Edit `config.mk` as needed, then run: make -Deleted installed content: +Delete installed content: make uninstall @@ -29,18 +29,6 @@ Deep cleaning, i.e. trying to restore the directory to its original state: make distclean -## Configuration - -Edit `config.mk` to suit your needs or redefine its macros when you invoke -`make`. For example, to install in a directory other than the default (i.e. -`local`) : - - make PREFIX=/my/install/path - -Remove install content from a user defined install directory: - - make PREFIX=/my/install/path uninstall - ## Copyright Copyright © 2023 |Méso|Star> (contact@meso-star.com) diff --git a/config.mk b/config.mk @@ -21,5 +21,6 @@ REPO = https://gitlab.com/meso-star REPO_BIN = https://www.meso-star.com/packages/v0.4/ REPO_VAPLV = https://gitlab.com/vaplv -# Build configuration +# Project to build BUILD = src/sgs.sh +#BUILD = src/star-engine.sh