mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
asn1_compile needs roken.h.
This commit is contained in:
parent
beb699c7ba
commit
45bc0b2b97
2 changed files with 9 additions and 2 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue