diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2000-02-08 05:27:18 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2000-02-08 05:27:18 +0000 |
commit | 3801aaaf35d7cadc0ab1b2b629946170e5c2330c (patch) | |
tree | b211d685a6da08aa096028eee7f373ab6151fe2d | |
parent | bfb0fea9984e51023ba17bc5e1d1fd9a09904a67 (diff) |
be consistent with other makefiles: use CFLAGS+= instead of COPTS+=
-rw-r--r-- | sbin/brconfig/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/brconfig/Makefile b/sbin/brconfig/Makefile index 3409da399c6..397bc4edefe 100644 --- a/sbin/brconfig/Makefile +++ b/sbin/brconfig/Makefile @@ -1,7 +1,7 @@ -# $OpenBSD: Makefile,v 1.1 1999/09/01 03:28:01 deraadt Exp $ +# $OpenBSD: Makefile,v 1.2 2000/02/08 05:27:17 jason Exp $ -PROG= brconfig -MAN= brconfig.8 -COPTS+= -Wall +PROG= brconfig +MAN= brconfig.8 +CFLAGS+= -Wall .include <bsd.prog.mk> |