Merge pull request #5208 from RobLoach/patch-14

Add make install command for the audio filters
This commit is contained in:
Twinaphex 2017-07-25 19:39:39 +02:00 committed by GitHub
commit 106ae968a0

View File

@ -3,6 +3,8 @@ extra_flags :=
use_neon := 0
build = release
DYLIB := so
PREFIX := /usr
INSTALLDIR := $(PREFIX)/lib/retroarch/filters/audio
ifeq ($(platform),)
platform = unix
@ -89,3 +91,10 @@ clean:
strip:
strip -s *.$(DYLIB)
install:
mkdir -p $(DESTDIR)$(INSTALLDIR)
cp -t $(DESTDIR)$(INSTALLDIR) $(targets) *.dsp
test-install:
DESTDIR=/tmp/build $(MAKE) install