this repo has no description
0
fork

Configure Feed

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

build: Make installation prefix configurable

Nix uses different prefix so we need it configurable.

+4 -1
+4 -1
Makefile
··· 1 1 KFVER=131 2 2 3 + PREFIX ?= /usr/local 4 + LIBDIR ?= $(PREFIX)/lib 5 + 3 6 ifeq ($(shell uname -s),Darwin) 4 7 SHARED := -Wl,-install_name,libkissfft.dylib -o libkissfft.dylib 5 8 else ··· 12 15 gcc -shared $(SHARED) kiss_fft.o 13 16 14 17 install: all 15 - cp libkissfft.so /usr/local/lib/ 18 + cp libkissfft.so $(LIBDIR) 16 19 17 20 doc: 18 21 @echo "Start by reading the README file. If you want to build and test lots of stuff, do a 'make testall'"