atrri

Refractive indices varying with wavelength
git clone git://git.meso-star.fr/atrri.git
Log | Files | Refs | README | LICENSE

commit 4dc7cb018ba88704d820acd0856490a008dfbd3d
parent f32c146959ff9fbccc838046463a613083a1fbe6
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu, 31 Aug 2023 11:19:36 +0200

Fix installation path for header files

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

diff --git a/Makefile b/Makefile @@ -79,7 +79,7 @@ atrri-local.pc: atrri.pc.in install: build_library pkg @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/lib" $(LIBNAME) @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/lib/pkgconfig" atrri.pc - @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/include" src/atrri.h + @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/include/astoria" src/atrri.h @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/share/doc/atrri" COPYING README.md @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/share/man/man5" atrri.5 @@ -88,7 +88,7 @@ uninstall: rm -f "$(DESTDIR)$(PREFIX)/lib/pkgconfig/atrri.pc" rm -f "$(DESTDIR)$(PREFIX)/share/doc/atrri/COPYING" rm -f "$(DESTDIR)$(PREFIX)/share/doc/atrri/README.md" - rm -f "$(DESTDIR)$(PREFIX)/include/atrri.h" + rm -f "$(DESTDIR)$(PREFIX)/include/astoria/atrri.h" rm -f "$(DESTDIR)$(PREFIX)/share/man/man5/atrri.5" ################################################################################