41 lines
955 B
Makefile
41 lines
955 B
Makefile
# $NetBSD: Makefile.inc,v 1.5 2000/11/12 19:48:55 martin Exp $
|
|
|
|
.if !defined(NTP_MAKEFILE_INC)
|
|
NTP_MAKEFILE_INC=1
|
|
|
|
NTPDOCDIR?= ${HTMLDOCDIR}/ntp
|
|
|
|
.if exists(${.CURDIR}/../../../dist/ntp)
|
|
DIST= ${.CURDIR}/../../../dist/ntp
|
|
.elif exists(${.CURDIR}/../../../../dist/ntp)
|
|
DIST= ${.CURDIR}/../../../../dist/ntp
|
|
.else
|
|
# error here?
|
|
.endif
|
|
|
|
CPPFLAGS+= -I${.CURDIR}/../include -I${DIST}/include -DHAVE_CONFIG_H
|
|
.if (${MACHINE_ARCH} == "sparc64")
|
|
CFLAGS+= -msoft-quad-float
|
|
.endif
|
|
|
|
.if defined(PROG)
|
|
LIBNTP!= cd ${.CURDIR}/../libntp; ${MAKE} print-objdir
|
|
LDADD+= -L${LIBNTP} -lntp
|
|
DPADD+= ${LIBNTP}/libntp.a
|
|
|
|
SRCS+= version.c
|
|
CLEANFILES+=version.c version.o .version
|
|
.version:
|
|
sh ${.CURDIR}/../scripts/mkver ${PROG} > /dev/null
|
|
version.c: .version ${LIBNTP}/libntp.a
|
|
.endif
|
|
|
|
NTPSRCDIR?= ${PROG}
|
|
.PATH: ${DIST}/${NTPSRCDIR}
|
|
|
|
.if exists(${.CURDIR}/../../Makefile.inc)
|
|
.include "${.CURDIR}/../../Makefile.inc"
|
|
.endif
|
|
|
|
.endif # !defined(NTP_MAKEFILE_INC)
|