From 5f74d0e7879c4b84b040772b37dcf32734b34b0c Mon Sep 17 00:00:00 2001 From: Niki Roo Date: Sat, 18 May 2019 15:07:15 +0200 Subject: [PATCH] update Makefile.base: allow including binaries from libs/bin --- Makefile.base | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.base b/Makefile.base index fe47347..0d365b8 100644 --- a/Makefile.base +++ b/Makefile.base @@ -8,6 +8,7 @@ # - 1.3.0: add 'man' for man(ual) pages # - 1.4.0: remove android stuff (not working anyway) # - 1.5.0: include sources and readme/changelog in jar +# - 1.5.1: include binaries from libs/bin/ into the jar # Required parameters (the commented out ones are supposed to be per project): @@ -153,6 +154,8 @@ $(NAME).jar: resources @ls *.md >/dev/null || cp VERSION README.md @echo "Copying documentation into bin/..." @cp -r *.md bin/ || cp VERSION bin/no-documentation.md + @[ ! -d libs/bin/ ] || echo "Copying additional binaries from libs/bin/ into bin/..." + @[ ! -d libs/bin/ ] || cp -r libs/bin/* bin/ @echo "Copying sources into bin/..." @cp -r src/* bin/ @echo "Making jar..." -- 2.27.0