mirror of
https://github.com/italicsjenga/slang-shaders.git
synced 2024-11-22 15:51:30 +11:00
14 lines
320 B
Makefile
14 lines
320 B
Makefile
|
INSTALLDIR := /usr/share/libretro/shaders/shaders_slang
|
||
|
|
||
|
all:
|
||
|
@echo "Nothing to make for slang-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
|