Makefile (b626f5a73a48f44a31a200291b141e1da408a2ff) | Makefile (58406fff5271d20a3a0e1f9cc84882497a96d27e) |
---|---|
1# $FreeBSD$ 2 3.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/common/ctf 4.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libctf/common 5.PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/ctf 6 7LIB= ctf 8SRCS= ctf_create.c \ --- 4 unchanged lines hidden (view full) --- 13 ctf_lib.c \ 14 ctf_lookup.c \ 15 ctf_open.c \ 16 ctf_subr.c \ 17 ctf_types.c \ 18 ctf_util.c 19MAN= ctf.5 20 | 1# $FreeBSD$ 2 3.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/common/ctf 4.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libctf/common 5.PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/ctf 6 7LIB= ctf 8SRCS= ctf_create.c \ --- 4 unchanged lines hidden (view full) --- 13 ctf_lib.c \ 14 ctf_lookup.c \ 15 ctf_open.c \ 16 ctf_subr.c \ 17 ctf_types.c \ 18 ctf_util.c 19MAN= ctf.5 20 |
21WARNS?= 0 | 21WARNS?= 2 |
22CFLAGS+= -DCTF_OLD_VERSIONS 23 24CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris \ 25 -I${.CURDIR}/../../../cddl/compat/opensolaris/include \ 26 -I${OPENSOLARIS_USR_DISTDIR}/head \ 27 -I${OPENSOLARIS_USR_DISTDIR}/common/ctf \ 28 -I${OPENSOLARIS_USR_DISTDIR}/lib/libctf/common \ 29 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common 30 31LIBADD+= z 32 33.include <bsd.lib.mk> | 22CFLAGS+= -DCTF_OLD_VERSIONS 23 24CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris \ 25 -I${.CURDIR}/../../../cddl/compat/opensolaris/include \ 26 -I${OPENSOLARIS_USR_DISTDIR}/head \ 27 -I${OPENSOLARIS_USR_DISTDIR}/common/ctf \ 28 -I${OPENSOLARIS_USR_DISTDIR}/lib/libctf/common \ 29 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common 30 31LIBADD+= z 32 33.include <bsd.lib.mk> |