blob: bc7969bbd4ccaa2345355ca849453b177d6af9b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- Makefile.orig 2000-01-18 05:33:15 UTC
+++ Makefile
@@ -4,8 +4,8 @@ install: rtfm
${CC} -o rtfm rtfm.c ${CFLAGS} ${LDFLAGS}
install: rtfm
- install -c -s -o root -g wheel -m 0755 rtfm /usr/local/bin
- install -c -o root -g wheel -m 0644 rtfm.1 ${PREFIX}/man/man1
+ $(BSD_INSTALL_PROGRAM) rtfm $(DESTDIR)${PREFIX}/bin
+ $(BSD_INSTALL_MAN) rtfm.1 $(DESTDIR)${PREFIX}/share/man/man1
clean:
rm -f rtfm
|