0
0
mirror of https://github.com/libretro/libretro-database synced 2025-06-23 02:43:39 +00:00
Files
libretro-database/Makefile
2019-01-24 22:45:34 -05:00

15 lines
387 B
Makefile

PREFIX := /usr
INSTALLDIR := $(PREFIX)/share/libretro/database
all:
@echo "Nothing to make for libretro-database."
install:
mkdir -p $(DESTDIR)$(INSTALLDIR)
cp -ar -t $(DESTDIR)$(INSTALLDIR) cht cursors rdb
find $(DESTDIR)$(INSTALLDIR) -type f -name "*.zip" -delete
find $(DESTDIR)$(INSTALLDIR) -type f -name "*.xml" -delete
test-install: all
DESTDIR=/tmp/build $(MAKE) install