patchimage/Makefile
Christopher Roy Bratusek 23cf0fc935 make patchimage respect PATCHIMAGE_WBFS_DIR
make patchimage check for system-installed tools, else use bundled ones
make it possible to install patchimage (+ debian packaging scripts)
version 3.0
2013-08-06 23:53:43 +02:00

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: