ngie 7d4a5cc84a kerberos5: normalize paths using SRCTOP-relative paths or :H when possible
This simplifies make logic/output

MFC after:	1 month
Sponsored by:	Dell EMC Isilon
2017-03-04 11:34:36 +00:00

37 lines
528 B
Makefile

# $FreeBSD$
PROG= asn1_compile
MAN=
LIBROKEN_A= ${.OBJDIR:H:H}/lib/libroken/libroken.a
LIBADD= vers
LDADD= ${LIBROKEN_A}
DPADD= ${LIBROKEN_A}
SRCS= \
asn1parse.y \
gen.c \
gen_copy.c \
gen_decode.c \
gen_encode.c \
gen_free.c \
gen_glue.c \
gen_length.c \
gen_seq.c \
gen_template.c \
hash.c \
lex.l \
main.c \
roken.h \
symbol.c
CFLAGS+=-I${KRB5DIR}/lib/roken -I${KRB5DIR}/lib/asn1 -I.
CLEANFILES= roken.h lex.c parse.c
roken.h:
make-roken > ${.TARGET}
.include <bsd.prog.mk>
.PATH: ${KRB5DIR}/lib/asn1