star-line

Structure for accelerating line importance sampling
git clone git://git.meso-star.fr/star-line.git
Log | Files | Refs | README | LICENSE

commit 0a6bf4dffda2358d92e1f8a67ad6ef967357d87d
parent a63890da6a336bf0fe43b4013b311e491696c13a
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed, 11 Mar 2026 14:09:45 +0100

Add the sln-get tool to the Makefile [un]install targets

Diffstat:
MMakefile | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -146,6 +146,7 @@ install: library pkg utils if [ "$(LIB_TYPE)" = "STATIC" ]; then mode=644; else mode=755; fi; \ install "$${mode}" "$(DESTDIR)$(LIBPREFIX)" $(LIBNAME); \ install 755 "$(DESTDIR)$(BINPREFIX)" sln-build; \ + install 755 "$(DESTDIR)$(BINPREFIX)" sln-get; \ install 644 "$(DESTDIR)$(LIBPREFIX)/pkgconfig" sln.pc; \ install 644 "$(DESTDIR)$(INCPREFIX)/star" src/sln.h; \ install 644 "$(DESTDIR)$(MANPREFIX)/man1" doc/sln-build.1; \ @@ -156,6 +157,7 @@ install: library pkg utils uninstall: rm -f "$(DESTDIR)$(LIBPREFIX)/$(LIBNAME)" rm -f "$(DESTDIR)$(BINPREFIX)/sln-build" + rm -f "$(DESTDIR)$(BINPREFIX)/sln-get" rm -f "$(DESTDIR)$(LIBPREFIX)/pkgconfig/sln.pc" rm -f "$(DESTDIR)$(BINPREFIX)/sln" rm -f "$(DESTDIR)$(INCPREFIX)/star/sln.h"