mirror of
https://github.com/italicsjenga/slang-shaders.git
synced 2024-11-21 23:31:30 +11:00
Merge pull request #59 from RobLoach/makefile
Add a Makefile for build tasks
This commit is contained in:
commit
243944bfcd
13
Makefile
Normal file
13
Makefile
Normal 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
|
Loading…
Reference in a new issue