executable name changed modified rc.d script files to be installed changed in Makefile included more useful, replacement Makefile to build target * New maintainer * No longer creates noip:noip * Now uses RCD_SCRIPTS
17 lines
248 B
Text
17 lines
248 B
Text
|
|
TGT=noip2
|
|
.if ${OPSYS} == "Linux"
|
|
ARCH=linux
|
|
LIBS=
|
|
.else
|
|
.if ${OPSYS} == "SunOS"
|
|
ARCH=sun
|
|
LIBS=-lsocket -lnsl
|
|
.else
|
|
ARCH=bsd_with_getifaddrs
|
|
LIBS=
|
|
.endif
|
|
.endif
|
|
|
|
all:
|
|
${CC} -Wall -g -O2 -D${ARCH} -DPREFIX=\"${PREFIX}\" ${TGT}.c -o ${TGT} ${LIBS}
|