mirror of
https://github.com/opnsense/src.git
synced 2026-02-26 19:30:29 -05:00
When not doing tree walks, it is bad for sub-dirs to depend on parents. Move the generation of opt_osname.h to distextract and have others that need that depend on it. In usr.sbin/bsdinstall use SUBDIR_DEPEND_ so tree walking still works. Reviewed by: obrien Differential Revision: https://reviews.freebsd.org/D39742
10 lines
187 B
Makefile
10 lines
187 B
Makefile
# $FreeBSD$
|
|
|
|
BINDIR= ${LIBEXECDIR}/bsdinstall
|
|
PROG= distfetch
|
|
CFLAGS+= -I${SRCTOP}/contrib/bsddialog/lib -I${.OBJDIR}/../distextract
|
|
LIBADD= fetch bsddialog
|
|
|
|
MAN=
|
|
|
|
.include <bsd.prog.mk>
|