freebsd-dev/usr.bin/users/Makefile
David Chisnall f2b893a0c6 Turn off exceptions and rtti when building the c++ version of users.
Neither is used in the program and this saves us 10KB (around 40%) in binary
size.
2014-07-12 07:47:50 +00:00

9 lines
137 B
Makefile

# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $FreeBSD$
WARNS= 3
PROG_CXX= users
CXXFLAGS+= -fno-rtti -fno-exceptions
.include <bsd.prog.mk>