Add a Makefile for build tasks

This commit is contained in:
Rob Loach 2017-07-24 22:00:20 -04:00
parent 188d99dba5
commit 2bb67e77ee
No known key found for this signature in database
GPG Key ID: 627C60834A74A21A
2 changed files with 16 additions and 0 deletions

13
Makefile Normal file
View 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

3
configure vendored Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
PACKAGE_NAME=glsl-shaders