blob: 5db73c534166a93e519dba1cb51c6f31af9f7c22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $NetBSD: Makefile.inc,v 1.13 2023/03/21 16:54:43 christos Exp $
USE_LIBEDIT=no
USE_TUI=yes
BINDIR=/usr/bin
WARNS?= 0
CPPFLAGS+= -D_KERNTYPES
.include "Makefile.gdb_arch"
CWARNFLAGS.clang+= -Wno-unused-value -Wno-conversion \
-Wno-switch-enum -Wno-parentheses -Wno-comment \
-Wno-format-security \
-Wno-tautological-compare -Wno-format-extra-args \
-Wno-string-plus-int
COPTS+= -fcommon
DIST:= ${.PARSEDIR}/dist
# Reduce debugging for these extremely large objects.
.if ${MKDEBUG:Uno} != "no"
CXXFLAGS+= -g1
.endif
|