Fixed include dir for lib header install

This commit is contained in:
Bob Polis 2023-04-18 11:39:16 +02:00
parent 80471925db
commit cd99ff50fb

View File

@ -89,6 +89,7 @@ $(LIBNAME).hpp: $(HDRS)
HEADERSRCDIR := build
else
HEADERSRCDIR := src
INCLUDEDIR := $(INCLUDEDIR)/$(LIBNAME)
endif
test:
@ -105,7 +106,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)