History log of /netbsd-src/usr.sbin/apm/Makefile (Results 1 – 20 of 20)
Revision Date Author Comments
# c4b7a9e7 03-Jun-2023 lukem <lukem@NetBSD.org>

bsd.own.mk: rename GCC_NO_* to CC_WNO_*

Rename compiler-warning-disable variables from
GCC_NO_warning
to
CC_WNO_warning
where warning is the full warning name as used by the compiler.

GCC_NO_IMPL

bsd.own.mk: rename GCC_NO_* to CC_WNO_*

Rename compiler-warning-disable variables from
GCC_NO_warning
to
CC_WNO_warning
where warning is the full warning name as used by the compiler.

GCC_NO_IMPLICIT_FALLTHRU is CC_WNO_IMPLICIT_FALLTHROUGH

Using the convention CC_compilerflag, where compilerflag
is based on the full compiler flag name.

show more ...


# de11d876 13-Oct-2019 mrg <mrg@NetBSD.org>

introduce some common variables for use in GCC warning disables:

GCC_NO_FORMAT_TRUNCATION -Wno-format-truncation (GCC 7/8)
GCC_NO_STRINGOP_TRUNCATION -Wno-stringop-truncation (GCC 8)
GCC_NO_STRI

introduce some common variables for use in GCC warning disables:

GCC_NO_FORMAT_TRUNCATION -Wno-format-truncation (GCC 7/8)
GCC_NO_STRINGOP_TRUNCATION -Wno-stringop-truncation (GCC 8)
GCC_NO_STRINGOP_OVERFLOW -Wno-stringop-overflow (GCC 8)
GCC_NO_CAST_FUNCTION_TYPE -Wno-cast-function-type (GCC 8)

use these to turn off warnings for most GCC-8 complaints. many
of these are false positives, most of the real bugs are already
commited, or are yet to come.


we plan to introduce versions of (some?) of these that use the
"-Wno-error=" form, which still displays the warnings but does
not make it an error, and all of the above will be re-considered
as either being "fix me" (warning still displayed) or "warning
is wrong."

show more ...


# 5f058922 02-May-2013 matt <matt@NetBSD.org>

This change arm, armeb, earm, earmeb, earmhf, earmhfeb so all builds that
share a MACHINE_ARCH for userland so that except for etc, will produce
identical sets.

usr/include/machine now points to usr

This change arm, armeb, earm, earmeb, earmhf, earmhfeb so all builds that
share a MACHINE_ARCH for userland so that except for etc, will produce
identical sets.

usr/include/machine now points to usr/include/arm

show more ...


# 1c54a66d 13-Dec-2009 nakayama <nakayama@NetBSD.org>

System utilities, boot programs and kernel modules are machine
(port) specific not CPU, so use MACHINE not MACHINE_ARCH.


# 515e5215 14-Feb-2009 abs <abs@NetBSD.org>

Convert more MACHINE tests to MACHINE_ARCH


# 055f4599 29-Jul-2007 nonaka <nonaka@NetBSD.org>

Added zaurus.


# 631f2d87 24-Nov-2005 macallan <macallan@NetBSD.org>

build the apm utility on sparc since we already build apmd


# 0afeae9a 03-Jul-2004 uch <uch@NetBSD.org>

add hpcsh


# 976f1e21 14-Oct-2002 takemura <takemura@NetBSD.org>

Enabled apm command device node for hpcmips and put apm.8 and zzz.8 man pages
into mi directory.


# 805b400b 19-Sep-2002 lukem <lukem@NetBSD.org>

use NETBSDSRCDIR as appropriate


# a9fed430 16-Sep-2002 manu <manu@NetBSD.org>

Initial support for APM on hpcarm (just enough to get battery state)


# 7dd411b5 18-Jun-2002 itojun <itojun@NetBSD.org>

userland access to apm emulation.


# f0fe153c 23-Oct-1997 lukem <lukem@NetBSD.org>

use CPPFLAGS instead of CFLAGS


# f5bf267d 18-Oct-1997 lukem <lukem@NetBSD.org>

enable WARNS=1 by default, but disable in unclean 3rd party code


# 7e0384f8 03-Oct-1997 mikel <mikel@NetBSD.org>

replace -W flags in CFLAGS with WARNS?=1, cleanup


# 78033298 23-Jun-1997 mrg <mrg@NetBSD.org>

decend all subdirs for man pages.


# 10e180cc 08-May-1997 gwr <gwr@NetBSD.org>

Back out the .PATH.c changes. The .depend problem (and others)
will be fixed using the new .NOPATH make feature instead.


# 012e528f 06-May-1997 gwr <gwr@NetBSD.org>

Use .PATH.c: ...


# 0aad9d43 24-Mar-1997 christos <christos@NetBSD.org>

Makefile cleanups


# b86b6952 25-Aug-1996 jtk <jtk@NetBSD.org>

add Advanced Power Management driver
Includes bootstrap support from FreeBSD (Tatsumi HOSOKAWA and <ukai>)