mirror of
https://github.com/scummvm/scummvm-shaders.git
synced 2026-05-21 05:40:52 +00:00
cdee120f29
Source: https://github.com/libretro/glsl-shaders Commit: 66cd3917c3cde8c96b5492bca00c95e3e17b44b9
15 lines
338 B
Makefile
15 lines
338 B
Makefile
PREFIX := /usr
|
|
INSTALLDIR := $(PREFIX)/share/libretro/shaders/shaders_glsl
|
|
|
|
all:
|
|
@echo "Nothing to make for glsl-shaders."
|
|
|
|
install:
|
|
mkdir -p $(DESTDIR)$(INSTALLDIR)
|
|
cp -ar -t $(DESTDIR)$(INSTALLDIR) *
|
|
rm -f $(DESTDIR)$(INSTALLDIR)/Makefile \
|
|
$(DESTDIR)$(INSTALLDIR)/configure
|
|
|
|
test-install: all
|
|
DESTDIR=/tmp/build $(MAKE) install
|