patchimage/Makefile

15 lines
340 B
Makefile
Raw Normal View History

all:
@echo "nothing to do"
install:
mkdir -p $(DESTDIR)/usr/bin/
mkdir -p $(DESTDIR)/usr/share/patchimage/
2014-05-18 09:02:11 +02:00
cp -rv patches tools override 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: