asn1_compile needs roken.h.

This commit is contained in:
Ruslan Ermilov 2004-02-01 09:30:02 +00:00
parent beb699c7ba
commit 45bc0b2b97
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=125297
2 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# $FreeBSD$
SUBDIR= make-print-version asn1_compile make-roken
SUBDIR= make-print-version make-roken asn1_compile
.include <bsd.subdir.mk>

View File

@ -21,6 +21,7 @@ SRCS= \
parse.y \
print_version.c \
print_version.h \
roken.h \
get_window_size.c \
strupr.c
@ -32,7 +33,13 @@ print_version.h: ../make-print-version/make-print-version
../make-print-version/make-print-version:
cd ${.CURDIR}/../make-print-version && ${MAKE}
CLEANFILES= print_version.h
roken.h: ../make-roken/make-roken
../make-roken/make-roken > ${.TARGET}
../make-roken/make-roken:
cd ${.CURDIR}/../make-roken && ${MAKE}
CLEANFILES= print_version.h roken.h
.include <bsd.prog.mk>