mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
61ce7c4a22
will be used to support SOCKS operation in the soon-to-be-released next version of CVSup. A tip of the hat to: Darryl Okahata, who developed the patches necessary to make the SOCKS library work with Modula-3's multithreaded I/O system.
19 lines
282 B
Makefile
19 lines
282 B
Makefile
CLEANFILES+= m3socks
|
|
MAN1= m3socks.1
|
|
MAN5= m3socks.conf.5
|
|
BINDIR= ${PREFIX}/bin
|
|
MANDIR= ${PREFIX}/man/man
|
|
|
|
all: m3socks
|
|
|
|
.SUFFIXES: .sh
|
|
|
|
.sh:
|
|
cp $@.sh $@
|
|
|
|
realinstall:
|
|
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
m3socks ${BINDIR}
|
|
|
|
.include <bsd.prog.mk>
|