Fixed include dir for lib header install

This commit is contained in:
Bob Polis 2023-04-18 11:37:35 +02:00
parent 7fc5a90618
commit 5047193435

View File

@ -90,6 +90,7 @@ $(LIBNAME).hpp: $(HDRS)
HEADERSRCDIR := build
else
HEADERSRCDIR := src
INCLUDEDIR := $(INCLUDEDIR)/$(LIBNAME)
endif
test:
@ -106,7 +107,7 @@ install:
endif
$(INSTALL) -d $(LIBDIR)
$(INSTALL) -m 644 $(OUTDIR)$(REALNAME) $(LIBDIR)
$(INSTALL) -d $(INCLUDEDIR)/$(LIBNAME)
$(INSTALL) -d $(INCLUDEDIR)
$(INSTALL) -m 644 $(HEADERSRCDIR)/$(LIBNAME).hpp $(INCLUDEDIR)
ifeq ($(UNAME_S),Darwin)
cd $(LIBDIR) && ln -sf $(REALNAME) $(SONAME)