mirror of
https://github.com/opnsense/src.git
synced 2026-03-19 17:29:02 -04:00
This is the second part of the commit (the third -- link in usr.sbin/Makefile) will be done after a more complete review by phk & obrien. NOTE: the number of drivers included in the default configuration is very minimal, mainly local clocks and the one I use RAWDCF. Anyone wanting to have a more complete version will find recompilation very easy. It builds and runs on both alpha & i386. It also does survive "make world". Reviewed by: phk, obrien (partly)
24 lines
555 B
Makefile
24 lines
555 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
.PATH: ${.CURDIR}/../../../contrib/ntp/libparse
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../contrib/ntp/include -I${.CURDIR}/../
|
|
|
|
SRCS= parse.c parse_conf.c \
|
|
clk_computime.c clk_dcf7000.c clk_hopf6021.c \
|
|
clk_meinberg.c clk_rawdcf.c clk_rcc8000.c \
|
|
clk_schmid.c clk_trimtaip.c clk_trimtsip.c \
|
|
clk_varitext.c clk_wharton.c data_mbg.c \
|
|
info_trimble.c trim_info.c
|
|
|
|
NOMAN= true
|
|
NOPROFILE= true
|
|
INTERNALLIB= true
|
|
NOPIC= true
|
|
INTERNALSTATICLIB= true
|
|
|
|
LIB= parse
|
|
|
|
.include <bsd.lib.mk>
|