diff options
author | kris <kris@FreeBSD.org> | 1999-07-10 05:46:44 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 1999-07-10 05:46:44 +0000 |
commit | aed1b7655126729facf9a47ca2ac99bdecf63369 (patch) | |
tree | 11788b2844b934678b707b98b8db4d654a3fbe95 /bin/cp/Makefile | |
parent | 34098f71f949273bcbc846942a19fa8e87497849 (diff) | |
download | FreeBSD-src-aed1b7655126729facf9a47ca2ac99bdecf63369.zip FreeBSD-src-aed1b7655126729facf9a47ca2ac99bdecf63369.tar.gz |
Add -W and fix the warning due to missing struct initializer
Diffstat (limited to 'bin/cp/Makefile')
-rw-r--r-- | bin/cp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/cp/Makefile b/bin/cp/Makefile index f4ca4d2..1ea50c9 100644 --- a/bin/cp/Makefile +++ b/bin/cp/Makefile @@ -1,8 +1,8 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 -# $Id: Makefile,v 1.4 1997/02/22 14:01:32 peter Exp $ +# $Id: Makefile,v 1.5 1998/11/14 23:43:11 wosch Exp $ PROG= cp SRCS= cp.c utils.c -CFLAGS+= -DVM_AND_BUFFER_CACHE_SYNCHRONIZED +CFLAGS+= -W -DVM_AND_BUFFER_CACHE_SYNCHRONIZED .include <bsd.prog.mk> |