diff options
author | roberto <roberto@FreeBSD.org> | 2004-07-20 15:45:04 +0000 |
---|---|---|
committer | roberto <roberto@FreeBSD.org> | 2004-07-20 15:45:04 +0000 |
commit | 3fdc9482f12b85674dc1a16185c9ba047474811c (patch) | |
tree | 6071f9f811210c36f4ca6f5a5ac2ee869e992e72 /usr.sbin/ntp | |
parent | eac3f226bba60fc68883240347410cfd4136e343 (diff) | |
download | FreeBSD-src-3fdc9482f12b85674dc1a16185c9ba047474811c.zip FreeBSD-src-3fdc9482f12b85674dc1a16185c9ba047474811c.tar.gz |
Add missing Makefile from previous commit.
Diffstat (limited to 'usr.sbin/ntp')
-rw-r--r-- | usr.sbin/ntp/sntp/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/usr.sbin/ntp/sntp/Makefile b/usr.sbin/ntp/sntp/Makefile new file mode 100644 index 0000000..ac8a435 --- /dev/null +++ b/usr.sbin/ntp/sntp/Makefile @@ -0,0 +1,15 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../contrib/ntp/sntp + +PROG= sntp +NOMAN= yes +SRCS= internet.c main.c socket.c timing.c unix.c + +CFLAGS+= -I${.CURDIR}/../../../contrib/ntp/include -I${.CURDIR}/../ \ + -DPACKAGE=\"sntp\" -DVERSION=\"1.6\" + +DPADD= ${LIBM} +LDADD= -lm + +.include <bsd.prog.mk> |