common-overlays/Makefile
2021-11-10 23:44:31 -05:00

20 lines
492 B
Makefile

# libretro-database
#
# This file provides some install and building commands for libretro-database.
#
# make install
# Installs the needed files to the given DESTDIR and INSTALLDIR.
PREFIX := /usr
INSTALLDIR := $(PREFIX)/share/libretro/overlays
all:
@echo "Nothing to make for libretro-overlays."
install:
mkdir -p $(DESTDIR)$(INSTALLDIR)
cp -ar -t $(DESTDIR)$(INSTALLDIR) borders ctr effects gamepads ipad keyboards misc wii
test-install: all
DESTDIR=/tmp/build $(MAKE) install