xref: /freebsd/usr.sbin/bsdinstall/Makefile (revision 8eb2bee6c0f4957c6c1cea826e59cda4d18a2a64)
1# $FreeBSD$
2
3OSNAME?=	FreeBSD
4SUBDIR= distextract distfetch partedit scripts
5SUBDIR_PARALLEL=
6SCRIPTS= bsdinstall
7MAN= bsdinstall.8
8PACKAGE=	bsdinstall
9GENHDRS=	opt_osname.h
10SRCS+=		${GENHDRS}
11CLEANFILES+=	${GENHDRS}
12
13opt_osname.h: .PHONY
14	if ! grep -q "^#define OSNAME \"${OSNAME}\"$"" ${.TARGET}; then \
15		echo "#define OSNAME \"${OSNAME}\"" > ${.TARGET}; \
16	fi
17
18.include <bsd.prog.mk>
19