aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/split/Makefile
diff options
context:
space:
mode:
authorDima Dorfman <dd@FreeBSD.org>2001-09-05 20:10:59 +0000
committerDima Dorfman <dd@FreeBSD.org>2001-09-05 20:10:59 +0000
commitf328d583a2124a0cb6b96ed97b40f25b540452df (patch)
treedaeeec3a70e25abbb362be816bcbe28a07febf84 /usr.bin/split/Makefile
parenta950ae83933defc6cc6eaebc4060553ed72704b5 (diff)
downloadsrc-f328d583a2124a0cb6b96ed97b40f25b540452df.tar.gz
src-f328d583a2124a0cb6b96ed97b40f25b540452df.zip
Use CFLAGS, not COPTS, in the Makefile. bsd.prog.mk conveniently adds
COPTS towards the end of final CFLAGS so that it can be used to override Makefile and other defaults. Using it in Makefiles risks having options set using it clobbered when somebody uses it on the command line. Approved by: bde
Notes
Notes: svn path=/head/; revision=83112
Diffstat (limited to 'usr.bin/split/Makefile')
-rw-r--r--usr.bin/split/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/split/Makefile b/usr.bin/split/Makefile
index ffac658297f4..3b55092f68d8 100644
--- a/usr.bin/split/Makefile
+++ b/usr.bin/split/Makefile
@@ -1,6 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
+# $FreeBSD$
PROG= split
-COPTS+= -Wall
+CFLAGS+=-Wall
.include <bsd.prog.mk>