Git Product home page Git Product logo

Comments (5)

cdluminate avatar cdluminate commented on May 5, 2024 2

This patch fixes this issue:

diff --git a/Makefile b/Makefile
index c0e6be5..f5e62a1 100644
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,10 @@ ifeq ($(OSTYPE),FreeBSD)
 override CXXFLAGS +=-fPIC
 endif

+PREFIX ?= /usr/local
+INCDIR ?= $(PREFIX)/include
+LIBDIR ?= $(PREFIX)/lib
+
 SIP_OBJS := $(addprefix obj/, \
        sip_hash.o \
        sip_tree_hash.o \
@@ -99,4 +103,10 @@ distclean: clean
        [ ! -d bin ] || $(RM) -r -- bin/
        [ ! -d lib ] || $(RM) -r -- lib/

+install: lib/libhighwayhash.a
+       mkdir -p $(DESTDIR)/$(LIBDIR)
+       mkdir -p $(DESTDIR)/$(INCDIR)/highwayhash
+       install -m0755 lib/libhighwayhash.a $(DESTDIR)/$(LIBDIR)
+       install -m0755 highwayhash/*.h $(DESTDIR)/$(INCDIR)/highwayhash/
+
 .PHONY: clean distclean all

from highwayhash.

jan-wassenberg avatar jan-wassenberg commented on May 5, 2024

@yurivict , thanks for the suggestion, and @cdluminate , thank you kindly for the patch.
I don't have much experience in this area but it looks good. Probably helpful to also add install to .PHONY? I'll merge these changes today.

from highwayhash.

cdluminate avatar cdluminate commented on May 5, 2024

The install target is added to PHONY in the pull request.

from highwayhash.

yurivict avatar yurivict commented on May 5, 2024

You should change

INCDIR ?= $(PREFIX)/include
LIBDIR ?= $(PREFIX)/lib

to

INCDIR := $(PREFIX)/include
LIBDIR := $(PREFIX)/lib

LIBDIR happens to be predefined in FreeBSD during the port build. There should be no need to allow INCDIR and LIBDIR to be predefined in the Makefile.

Thank you!

from highwayhash.

cdluminate avatar cdluminate commented on May 5, 2024

Actually I need to override the PREFIX and LIBDIR in Debian packaging script, so files can be installed to the correct place. See https://github.com/CDLuminate/debian-highwayhash/blob/master/debian/rules#L5-L6

from highwayhash.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.