pkgsrc-wip/noip/files/makefile.noip
David Howland b608bfbbef * Update to 2.1.1
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
2004-06-17 23:14:53 +00:00

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}