mirror of
https://github.com/libretro/glsl-shaders.git
synced 2024-11-23 07:40:29 +00:00
Add a Makefile for build tasks
This commit is contained in:
parent
188d99dba5
commit
2bb67e77ee
13
Makefile
Normal file
13
Makefile
Normal file
@ -0,0 +1,13 @@
|
||||
INSTALLDIR := /usr/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
|
Loading…
Reference in New Issue
Block a user