atrtp

Thermodynamic properties of a medium in combustion
git clone git://git.meso-star.fr/atrtp.git
Log | Files | Refs | README | LICENSE

commit 9b147fa4e5e3af56720777c7e6e1854b2b3f5714
parent 3740f563c8491f6bbb1cf2b6a937a33e3609c42c
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu, 31 Aug 2023 16:45:19 +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 @@ atrtp-local.pc: atrtp.pc.in install: build_library pkg @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/lib" $(LIBNAME) @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/lib/pkgconfig" atrtp.pc - @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/include" src/atrtp.h + @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/include/astoria" src/atrtp.h @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/share/doc/atrtp" COPYING README.md @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/share/man/man5" atrtp.5 @@ -88,7 +88,7 @@ uninstall: rm -f "$(DESTDIR)$(PREFIX)/lib/pkgconfig/atrtp.pc" rm -f "$(DESTDIR)$(PREFIX)/share/doc/atrtp/COPYING" rm -f "$(DESTDIR)$(PREFIX)/share/doc/atrtp/README.md" - rm -f "$(DESTDIR)$(PREFIX)/include/atrtp.h" + rm -f "$(DESTDIR)$(PREFIX)/include/astoria/atrtp.h" rm -f "$(DESTDIR)$(PREFIX)/share/man/man5/atrtp.5" ################################################################################