mirror of
https://github.com/libretro/RetroArch
synced 2025-04-09 21:45:45 +00:00
Merge pull request #5208 from RobLoach/patch-14
Add make install command for the audio filters
This commit is contained in:
commit
106ae968a0
@ -3,6 +3,8 @@ extra_flags :=
|
|||||||
use_neon := 0
|
use_neon := 0
|
||||||
build = release
|
build = release
|
||||||
DYLIB := so
|
DYLIB := so
|
||||||
|
PREFIX := /usr
|
||||||
|
INSTALLDIR := $(PREFIX)/lib/retroarch/filters/audio
|
||||||
|
|
||||||
ifeq ($(platform),)
|
ifeq ($(platform),)
|
||||||
platform = unix
|
platform = unix
|
||||||
@ -89,3 +91,10 @@ clean:
|
|||||||
|
|
||||||
strip:
|
strip:
|
||||||
strip -s *.$(DYLIB)
|
strip -s *.$(DYLIB)
|
||||||
|
|
||||||
|
install:
|
||||||
|
mkdir -p $(DESTDIR)$(INSTALLDIR)
|
||||||
|
cp -t $(DESTDIR)$(INSTALLDIR) $(targets) *.dsp
|
||||||
|
|
||||||
|
test-install:
|
||||||
|
DESTDIR=/tmp/build $(MAKE) install
|
||||||
|
Loading…
x
Reference in New Issue
Block a user