ports/comms/picocom/files/patch-Makefile
Dennis Herrmann e4946cb514 - Update to 1.6
- Take maintainership
- Fix WWW/pkg-descr [1]

PR:		ports/156047
Submitted by:	N.J. Mann <njm@njm.me.uk> [1]
2011-03-31 15:32:57 +00:00

23 lines
498 B
Text

--- ./Makefile.orig 2010-05-29 00:39:52.000000000 +0200
+++ ./Makefile 2011-03-30 22:23:36.000000000 +0200
@@ -1,6 +1,9 @@
VERSION=1.6
+BIN = $(PREFIX)/bin
+MAN8 = $(PREFIX)/man/man8
+
# CC = gcc
CPPFLAGS=-DVERSION_STR=\"$(VERSION)\" -DUUCP_LOCK_DIR=\"/var/lock\" \
-DHIGH_BAUD
@@ -43,3 +46,10 @@
rm -f picocom.8.html
rm -f picocom.8.ps
rm -f CHANGES
+
+install:
+ install -d $(BIN)
+ install -o root picocom $(BIN)
+ install -d $(MAN8)
+ install -o root picocom.8 $(MAN8)
+