646f2112d3
Obviously, this breaks the already unstable Veriexec ABI, but that's it. Some cool additions are planned to be introduced, and this just makes it so that NetBSD 4.0 users will be able to easily use them as well. This also removes the fingerprint type name limit, so relevant code was adjusted. Thoroughly tested (even uncovered a bug in proplib! thanks for fixing that cube@!). Documentation updated.
17 lines
322 B
Makefile
17 lines
322 B
Makefile
# $NetBSD: Makefile,v 1.12 2006/11/28 22:22:03 elad Exp $
|
|
|
|
PROG= veriexecctl
|
|
MAN= veriexecctl.8
|
|
SRCS= veriexecctl_parse.y veriexecctl_conf.l veriexecctl.c
|
|
|
|
YHEADER= 1
|
|
CPPFLAGS+= -I${.CURDIR} -I.
|
|
DPADD+= ${LIBL} ${LIBPROP}
|
|
LDADD+= -ll -lprop
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.if ${HAVE_GCC} == 4
|
|
COPTS+= -Wno-pointer-sign
|
|
.endif
|