11 lines
199 B
Makefile
11 lines
199 B
Makefile
|
all:
|
||
|
|
||
|
install:
|
||
|
mkdir -p $(DESTDIR)/usr/share/sounds/pika
|
||
|
cp --no-preserve=mode,ownership -r \
|
||
|
sounds/* \
|
||
|
$(DESTDIR)/usr/share/sounds/pika/
|
||
|
|
||
|
uninstall:
|
||
|
-rm -rf $(DESTDIR)/usr/share/sounds/pika
|