From 54d7bde90161b3e01a5e15260d08e79f39096fec Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Wed, 18 Dec 2019 21:04:42 +0300 Subject: add makefile --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..41eacf1 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +# See license for licensing details + +PREFIX=/usr + +install: + @install -Dm644 inittab ${DESTDIR}/etc/inittab + @install -Dm755 rc.boot ${DESTDIR}${PREFIX}/lib/init/rc.boot + @install -Dm755 rc.shutdown ${DESTDIR}${PREFIX}/lib/init/rc.shutdown + +uninstall: + @rm -f ${DESTDIR}/etc/inittab + @rm -f ${DESTDIR}${PREFIX}/lib/init/rc.boot + @rm -f ${DESTDIR}${PREFIX}/lib/init/rc.shutdown + -- cgit v1.2.3