46 lines
1.0 KiB
Makefile
46 lines
1.0 KiB
Makefile
# $NetBSD: Makefile,v 1.7 2000/12/30 17:21:45 sommerfeld Exp $
|
|
|
|
NOMAN= noman
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
DIST= ${.CURDIR}/../../../crypto/dist
|
|
.PATH: ${DIST}/heimdal/lib/asn1 ${DIST}/heimdal/lib/roken
|
|
|
|
WARNS?= 1
|
|
MKLINT= no
|
|
|
|
HOSTPROG= asn1_compile
|
|
|
|
SRCS= parse.y lex.l main.c hash.c symbol.c gen.c \
|
|
gen_encode.c gen_decode.c gen_free.c gen_length.c gen_copy.c \
|
|
gen_glue.c \
|
|
getarg.c print_version.c warnerr.c strupr.c get_window_size.c
|
|
|
|
YHEADER= 1
|
|
|
|
BINDIR= /usr/bin
|
|
|
|
LIBROKEN!= cd ${.CURDIR}/../../libroken && ${PRINTOBJDIR}
|
|
|
|
HOST_CPPFLAGS+= -I. \
|
|
-I${.CURDIR}/../../../include/heimdal \
|
|
-I${LIBROKEN} \
|
|
-I${DIST}/heimdal/lib/asn1 \
|
|
-I${DIST}/heimdal/lib/roken \
|
|
-DHAVE_CONFIG_H
|
|
|
|
DPSRCS= print_version.h
|
|
|
|
make-print-version.lo: ${.CURDIR}/../../../include/heimdal/version.h
|
|
|
|
make-print-version: make-print-version.lo
|
|
${HOST_CC} ${HOST_LDFLAGS} -o ${.TARGET} ${.ALLSRC}
|
|
|
|
print_version.h: make-print-version
|
|
./make-print-version print_version.h
|
|
|
|
CLEANFILES+= print_version.h make-print-version make-print-version.lo
|
|
|
|
.include <bsd.hostprog.mk>
|