diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2002-04-26 13:13:42 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2002-04-26 13:13:42 +0000 |
commit | 79ea2a1057cc23431d32d23dd490d0ee63c349f4 (patch) | |
tree | 882f9960f1d8b64b07242ecc485672f8411dcc06 /usr.bin/m4/Makefile | |
parent | 0275af2723026459d078869a62f4ecc88a6b4034 (diff) |
prototype mismatch, ansi conversion rules...
add -pedantic to flags.
Diffstat (limited to 'usr.bin/m4/Makefile')
-rw-r--r-- | usr.bin/m4/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/m4/Makefile b/usr.bin/m4/Makefile index 96509d2d11c..ef065c05a42 100644 --- a/usr.bin/m4/Makefile +++ b/usr.bin/m4/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.9 2002/04/22 21:45:00 miod Exp $ +# $OpenBSD: Makefile,v 1.10 2002/04/26 13:13:41 espie Exp $ # -DEXTENDED # if you want the paste & spaste macros. PROG= m4 CFLAGS+=-DEXTENDED -CDIAGFLAGS=-W -Wall -Wstrict-prototypes \ +CDIAGFLAGS=-W -Wall -Wstrict-prototypes -pedantic \ -Wno-unused -Wno-char-subscripts -Wno-sign-compare SRCS= eval.c expr.c look.c main.c misc.c gnum4.c trace.c |