mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-31 21:59:21 +00:00
15 lines
355 B
Diff
15 lines
355 B
Diff
diff --git a/Makefile b/Makefile
|
|
index c3005d2..e071fc9 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -18,3 +18,9 @@ clean:
|
|
rm -f sl
|
|
|
|
distclean: clean
|
|
+
|
|
+install: all
|
|
+ mkdir -p ${DESTDIR}/usr/local/bin
|
|
+ install sl ${DESTDIR}/usr/local/bin/sl
|
|
+ mkdir -p ${DESTDIR}/usr/local/share/man/man1
|
|
+ gzip -9 -c < sl.1 > ${DESTDIR}/usr/local/share/man/man1/sl.1.gz
|