diff options
| author | Samantaz Fox <coding@samantaz.fr> | 2022-02-23 00:18:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-23 00:18:48 +0100 |
| commit | 253256bf37f6eb86f3ad39035a659b44fb0cf327 (patch) | |
| tree | 72abb0ca7e76ca73358696174f84aebe7cd8aa5d /Makefile | |
| parent | b417ea8e3aa774ee1c5483decd8ba1da58fa90f4 (diff) | |
| download | invidious-253256bf37f6eb86f3ad39035a659b44fb0cf327.tar.gz invidious-253256bf37f6eb86f3ad39035a659b44fb0cf327.tar.bz2 invidious-253256bf37f6eb86f3ad39035a659b44fb0cf327.zip | |
Clean make help
Forgot to mute the echo commands :X
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 44 |
1 files changed, 22 insertions, 22 deletions
@@ -89,28 +89,28 @@ distclean: clean # ----------------------- help: - echo "Targets available in this Makefile:" - echo "" - echo "get-libs Fetch Crystal libraries" - echo "invidious Build Invidious" - echo "run Launch Invidious" - echo "" - echo "format Run the Crystal formatter" - echo "test Run tests" - echo "verify Just make sure that the code compiles, but without" - echo " generating any binaries. Useful to search for errors" - echo "" - echo "clean Remove build artifacts" - echo "distclean Remove build artifacts and libraries" - echo "" - echo "" - echo "Build options available for this Makefile:" - echo "" - echo "RELEASE Make a release build (Default: 1)" - echo "STATIC Link libraries statically (Default: 0)" - echo "" - echo "DISABLE_QUIC Disable support for QUIC (Default: 0)" - echo "NO_DBG_SYMBOLS Strip debug symbols (Default: 0)" + @echo "Targets available in this Makefile:" + @echo "" + @echo " get-libs Fetch Crystal libraries" + @echo " invidious Build Invidious" + @echo " run Launch Invidious" + @echo "" + @echo " format Run the Crystal formatter" + @echo " test Run tests" + @echo " verify Just make sure that the code compiles, but without" + @echo " generating any binaries. Useful to search for errors" + @echo "" + @echo " clean Remove build artifacts" + @echo " distclean Remove build artifacts and libraries" + @echo "" + @echo "" + @echo "Build options available for this Makefile:" + @echo "" + @echo " RELEASE Make a release build (Default: 1)" + @echo " STATIC Link libraries statically (Default: 0)" + @echo "" + @echo " DISABLE_QUIC Disable support for QUIC (Default: 0)" + @echo " NO_DBG_SYMBOLS Strip debug symbols (Default: 0)" |
