From cf0a8088e0c27cdd137e5bcf7a71747e67548c0d Mon Sep 17 00:00:00 2001 From: Ian Daniher Date: Thu, 9 Apr 2015 21:31:37 -0400 Subject: [PATCH] add install target for shared lib --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index e6e499e..b507dcd 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,9 @@ all: ar crus libkissfft.a kiss_fft.o gcc -shared -Wl,-soname,libkissfft.so -o libkissfft.so kiss_fft.o +install: all + cp libkissfft.so /usr/local/lib/ + doc: @echo "Start by reading the README file. If you want to build and test lots of stuff, do a 'make testall'" @echo "but be aware that 'make testall' has dependencies that the basic kissfft software does not."