6424881cc8
The macOS assert.h header does not define static_assert when compiling in C99 mode. To fix this compile with -std=c11. Reviewed By: emaste Differential Revision: https://reviews.freebsd.org/D25928
15 lines
208 B
Makefile
15 lines
208 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE=runtime
|
|
PROG= newfs_msdos
|
|
MAN= newfs_msdos.8
|
|
SRCS= newfs_msdos.c mkfs_msdos.c
|
|
|
|
# XXX - this is verboten
|
|
.if ${MACHINE_CPUARCH} == "arm"
|
|
WARNS?= 3
|
|
.endif
|
|
CSTD= c11
|
|
|
|
.include <bsd.prog.mk>
|