this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: Use install command for installing files

In build chroots of some package managers, the libdir does not exist yet so we need to create it.

+3 -1
+3 -1
Makefile
··· 3 3 PREFIX ?= /usr/local 4 4 LIBDIR ?= $(PREFIX)/lib 5 5 6 + INSTALL ?= install 7 + 6 8 ifeq ($(shell uname -s),Darwin) 7 9 SHARED_NAME := libkissfft.dylib 8 10 SHARED_FLAGS := -Wl,-install_name,$(SHARED_NAME) ··· 17 19 gcc -shared $(SHARED_FLAGS) -o $(SHARED_NAME) kiss_fft.o 18 20 19 21 install: all 20 - cp $(SHARED_NAME) $(LIBDIR) 22 + $(INSTALL) -Dt $(LIBDIR) $(SHARED_NAME) 21 23 22 24 doc: 23 25 @echo "Start by reading the README file. If you want to build and test lots of stuff, do a 'make testall'"