mirror of
https://github.com/libretro/libretro-database
synced 2025-06-24 07:46:55 +00:00
13 lines
267 B
Makefile
13 lines
267 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
|
|
|
|
test-install: all
|
|
DESTDIR=/tmp/build $(MAKE) install
|