mirror of
https://gitlab.com/Nanolx/patchimage.git
synced 2024-11-24 10:09:22 +01:00
15 lines
331 B
Makefile
15 lines
331 B
Makefile
|
all:
|
||
|
@echo "nothing to do"
|
||
|
|
||
|
install:
|
||
|
mkdir -p $(DESTDIR)/usr/bin/
|
||
|
mkdir -p $(DESTDIR)/usr/share/patchimage/
|
||
|
cp -rv patches tools script.d $(DESTDIR)/usr/share/patchimage/
|
||
|
install -m755 patchimage.sh $(DESTDIR)/usr/bin/patchimage
|
||
|
|
||
|
uninstall:
|
||
|
rm -rf $(DESTDIR)/usr/share/patchimage
|
||
|
rm -f $(DESTDIR)/usr/bin/patchimage
|
||
|
|
||
|
clean:
|