diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..04b222a --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +PREFIX = /usr +SYSCONFDIR = /etc +BINDIR = ${PREFIX}/bin +DATADIR = ${PREFIX}/share + +install: + install -Dm600 config ${DESTDIR}${SYSCONFDIR}/tinyramfs/config + install -Dm755 tinyramfs ${DESTDIR}${BINDIR}/tinyramfs + install -Dm755 usr/share/tinyramfs/init ${DESTDIR}${DATADIR}/tinyramfs/init + install -Dm755 usr/share/tinyramfs/device-helper ${DESTDIR}${DATADIR}/tinyramfs/device-helper + +uninstall: + rm -f ${DESTDIR}${BINDIR}/tinyramfs + rm -rf ${DESTDIR}${DATADIR}/tinyramfs