Merge pull request #59 from RobLoach/makefile

Add a Makefile for build tasks
This commit is contained in:
Twinaphex 2017-07-25 04:29:01 +02:00 committed by GitHub
commit 243944bfcd
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_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

3
configure vendored Executable file
View file

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