diff -r f10fa2b7fc44 -r 586609aedc5c Makefile --- a/Makefile Tue Sep 06 16:07:27 2016 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,25 +0,0 @@ -DESTDIR = / - -prefix = /usr/local -sbindir = ${prefix}/sbin -etcdir = /etc - -.PHONY: all clean install - -all: kvmtool - -kvmtool: kvmtool.sh - @sed -e 's|\[% VERSION %\]|'"`hg id -bit`"'|;' \ - -e 's|\[% BUILDINFO %\]|'"`hostname`:`pwd`"'|;' \ - <$^ >$@ - @chmod +x $@ - -clean: ; rm -f kvmtool - -install: all - install -m 0755 -d ${DESTDIR}${sbindir}/ - install -m 0555 kvmtool ${DESTDIR}${sbindir}/kvmtool - install -m 0755 -d ${DESTDIR}${etcdir}/ - test -f ${DESTDIR}${etcdir}/kvmtab \ - || install -m 0644 kvmtab.ex ${DESTDIR}${etcdir}/kvmtab -