diff options
author | Tim Vanderhoek <hoek@FreeBSD.org> | 1998-08-23 02:34:23 +0000 |
---|---|---|
committer | Tim Vanderhoek <hoek@FreeBSD.org> | 1998-08-23 02:34:23 +0000 |
commit | 23bcef9463e0bb6afb7f49c1e30c223319559302 (patch) | |
tree | 7a644dc7f7951a3f3d660f1229738974b8d226b2 /editors/bpatch/files | |
parent | Clarify. (diff) |
Use MAN1. Install correctly from usermode.
Notes
Notes:
svn path=/head/; revision=12731
Diffstat (limited to 'editors/bpatch/files')
-rw-r--r-- | editors/bpatch/files/patch-aa | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/editors/bpatch/files/patch-aa b/editors/bpatch/files/patch-aa index 859b2f6854d0..ca364e8af52a 100644 --- a/editors/bpatch/files/patch-aa +++ b/editors/bpatch/files/patch-aa @@ -1,6 +1,6 @@ --- /dev/null Mon Mar 18 12:50:49 1996 +++ Makefile Mon Mar 18 19:30:47 1996 -@@ -0,0 +1,42 @@ +@@ -0,0 +1,39 @@ +# This may have to change on your system. +# You may have to fiddle with various combinations of curses, termcap, +# terminfo, etc. Good luck! @@ -29,17 +29,14 @@ +#Microport sysV/AT, large model, for sdb debugger +#CFLAGS = -g -Ml + -+all: bpatch bpatch.1.gz ++all: bpatch + +clean: -+ rm -f bpatch bpatch.o bpatch.1.gz *.core ++ rm -f bpatch bpatch.o *.core + +bpatch: bpatch.o + $(CC) -o bpatch $(CFLAGS) bpatch.o $(GETOPT) $(LIBS) + -+bpatch.1.gz: bpatch.1 -+ gzip -c < bpatch.1 > bpatch.1.gz -+ -+install: bpatch bpatch.1.gz -+ install -c -o bin -g bin -m 555 bpatch ${DESTDIR}${BINDIR} -+ install -c -o bin -g bin -m 444 bpatch.1.gz ${DESTDIR}${MANDIR} ++install: bpatch bpatch.1 ++ $(BSD_INSTALL_PROGRAM) bpatch $(DESTDIR)$(BINDIR) ++ $(BSD_INSTALL_MAN) bpatch.1 $(DESTDIR)$(MANDIR) |