freebsd-dev/usr.sbin/vidcontrol/Makefile
Xin LI 9a03b27dba WANRS=6 cleanup for vidcontrol(1):
- Use foo(void) instead of foo().
	- Use static where applicable.
	- Apply more const's when passing parameters
	- signed/unsigned madness
	- Avoid namespace collision by adding underscores.
	- For 64-bit architectures, use %zx instead of %x
	  when necessary.
	- When storing constants, use const instead of
	  variable.
	- Bump WARNS?= from 2 to 6
2005-01-13 03:59:44 +00:00

9 lines
93 B
Makefile

# $FreeBSD$
PROG= vidcontrol
SRCS= vidcontrol.c decode.c
WARNS?= 6
.include <bsd.prog.mk>