mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-27 10:10:57 +00:00
Add a make install command to the video filters
This commit is contained in:
parent
6f637df360
commit
4f4ef6e815
@ -3,6 +3,8 @@ extra_flags :=
|
||||
use_neon := 0
|
||||
release := release
|
||||
DYLIB := so
|
||||
PREFIX := /usr
|
||||
INSTALLDIR := $(PREFIX)/lib/retroarch/filters/video
|
||||
|
||||
ifeq ($(platform),)
|
||||
platform = unix
|
||||
@ -89,3 +91,10 @@ clean:
|
||||
|
||||
strip:
|
||||
strip -s *.$(DYLIB)
|
||||
|
||||
install:
|
||||
mkdir -p $(DESTDIR)$(INSTALLDIR)
|
||||
cp -t $(DESTDIR)$(INSTALLDIR) $(objects) *.filt
|
||||
|
||||
test-install:
|
||||
DESTDIR=/tmp/build $(MAKE) install
|
||||
|
Loading…
Reference in New Issue
Block a user